[clang] a9b114c - Disable the new enum i128 test under ASan, it uncovers an existing leak

Reid Kleckner via cfe-commits cfe-commits at lists.llvm.org
Mon Jul 26 15:48:39 PDT 2021


Author: Reid Kleckner
Date: 2021-07-26T15:48:32-07:00
New Revision: a9b114c5dd68685e0e68dd9144454b44509c2f5f

URL: https://github.com/llvm/llvm-project/commit/a9b114c5dd68685e0e68dd9144454b44509c2f5f
DIFF: https://github.com/llvm/llvm-project/commit/a9b114c5dd68685e0e68dd9144454b44509c2f5f.diff

LOG: Disable the new enum i128 test under ASan, it uncovers an existing leak

See llvm.org/pr51221

Added: 
    

Modified: 
    clang/test/CodeGenCXX/debug-info-enum-i128.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGenCXX/debug-info-enum-i128.cpp b/clang/test/CodeGenCXX/debug-info-enum-i128.cpp
index 081f21875a04..ca6f2f406c05 100644
--- a/clang/test/CodeGenCXX/debug-info-enum-i128.cpp
+++ b/clang/test/CodeGenCXX/debug-info-enum-i128.cpp
@@ -1,6 +1,9 @@
 // RUN: %clang_cc1 %s -triple x86_64-windows-msvc -gcodeview -debug-info-kind=limited -emit-llvm -o - | FileCheck %s
 // RUN: %clang_cc1 %s -triple x86_64-linux-gnu -debug-info-kind=limited -emit-llvm -o - | FileCheck %s
 
+// FIXME: llvm.org/pr51221, the APSInt leaks
+// UNSUPPORTED: asan
+
 enum class uns : __uint128_t { unsval = __uint128_t(1) << 64 };
 uns t1() { return uns::unsval; }
 


        


More information about the cfe-commits mailing list