[compiler-rt] r316720 - [LSan] Disable a couple of failing tests on PPC64 (pending investigation).

Alex Shlyapnikov via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 26 17:29:40 PDT 2017


Author: alekseyshl
Date: Thu Oct 26 17:29:40 2017
New Revision: 316720

URL: http://llvm.org/viewvc/llvm-project?rev=316720&view=rev
Log:
[LSan] Disable a couple of failing tests on PPC64 (pending investigation).

Modified:
    compiler-rt/trunk/test/lsan/TestCases/stale_stack_leak.cc
    compiler-rt/trunk/test/lsan/TestCases/swapcontext.cc

Modified: compiler-rt/trunk/test/lsan/TestCases/stale_stack_leak.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/TestCases/stale_stack_leak.cc?rev=316720&r1=316719&r2=316720&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/TestCases/stale_stack_leak.cc (original)
+++ compiler-rt/trunk/test/lsan/TestCases/stale_stack_leak.cc Thu Oct 26 17:29:40 2017
@@ -5,7 +5,7 @@
 // RUN: %env_lsan_opts=$LSAN_BASE":exitcode=0" %run %t 2>&1 | FileCheck --check-prefix=CHECK-sanity %s
 //
 // x86 passes parameters through stack that may lead to false negatives
-// UNSUPPORTED: x86
+// UNSUPPORTED: x86,powerpc64
 
 #include <stdio.h>
 #include <stdlib.h>

Modified: compiler-rt/trunk/test/lsan/TestCases/swapcontext.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/TestCases/swapcontext.cc?rev=316720&r1=316719&r2=316720&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/TestCases/swapcontext.cc (original)
+++ compiler-rt/trunk/test/lsan/TestCases/swapcontext.cc Thu Oct 26 17:29:40 2017
@@ -4,7 +4,7 @@
 // RUN: %clangxx_lsan %s -o %t
 // RUN: %env_lsan_opts= %run %t 2>&1
 // RUN: %env_lsan_opts= not %run %t foo 2>&1 | FileCheck %s
-// UNSUPPORTED: arm
+// UNSUPPORTED: arm,powerpc64
 
 #include <stdio.h>
 #if defined(__APPLE__)




More information about the llvm-commits mailing list