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

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


Author: fjricci
Date: Fri May 12 11:01:15 2017
New Revision: 302912

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

These are causing buildbot failures, disable for now.

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=302912&r1=302911&r2=302912&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:01:15 2017
@@ -3,6 +3,8 @@
 // RUN: %clangxx_lsan %s -o %t
 // RUN: %env_lsan_opts=$LSAN_BASE %run %t
 // RUN: %env_lsan_opts=$LSAN_BASE not %run %t foo 2>&1 | FileCheck %s
+//
+// XFAIL: 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=302912&r1=302911&r2=302912&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:01:15 2017
@@ -3,6 +3,8 @@
 // RUN: %clangxx_lsan %s -o %t
 // 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
 
 #include <assert.h>
 #include <stdio.h>




More information about the llvm-commits mailing list