[compiler-rt] r302920 - Disable two failing darwin lsan tests

Francis Ricci via llvm-commits llvm-commits at lists.llvm.org
Fri May 12 09:52:20 PDT 2017


Author: fjricci
Date: Fri May 12 11:52:19 2017
New Revision: 302920

URL: http://llvm.org/viewvc/llvm-project?rev=302920&view=rev
Log:
Disable two failing darwin lsan tests

These tests don't fail consistently in all cases, but they
fail most of the time on the buildbots. Mark as UNSUPPORTED for now to
avoid buildbots failing due to XPASS.

Modified:
    compiler-rt/trunk/test/lsan/TestCases/link_turned_off.cc
    compiler-rt/trunk/test/lsan/TestCases/recoverable_leak_check.cc

Modified: compiler-rt/trunk/test/lsan/TestCases/link_turned_off.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/TestCases/link_turned_off.cc?rev=302920&r1=302919&r2=302920&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/TestCases/link_turned_off.cc (original)
+++ compiler-rt/trunk/test/lsan/TestCases/link_turned_off.cc Fri May 12 11:52:19 2017
@@ -4,7 +4,7 @@
 // RUN: %env_lsan_opts=$LSAN_BASE %run %t
 // RUN: %env_lsan_opts=$LSAN_BASE not %run %t foo 2>&1 | FileCheck %s
 //
-// XFAIL: darwin
+// UNSUPPORTED: darwin
 
 #include <sanitizer/lsan_interface.h>
 

Modified: compiler-rt/trunk/test/lsan/TestCases/recoverable_leak_check.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/TestCases/recoverable_leak_check.cc?rev=302920&r1=302919&r2=302920&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/TestCases/recoverable_leak_check.cc (original)
+++ compiler-rt/trunk/test/lsan/TestCases/recoverable_leak_check.cc Fri May 12 11:52:19 2017
@@ -4,7 +4,7 @@
 // RUN: %env_lsan_opts=$LSAN_BASE %run %t foo 2>&1 | FileCheck %s
 // RUN: %env_lsan_opts=$LSAN_BASE %run %t 2>&1 | FileCheck %s
 //
-// XFAIL: darwin
+// UNSUPPORTED: darwin
 
 #include <assert.h>
 #include <stdio.h>




More information about the llvm-commits mailing list