[compiler-rt] r358209 - [TSan][libdispatch] Re-enable disabled tests

Julian Lettner via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 11 11:34:47 PDT 2019


Author: yln
Date: Thu Apr 11 11:34:47 2019
New Revision: 358209

URL: http://llvm.org/viewvc/llvm-project?rev=358209&view=rev
Log:
[TSan][libdispatch] Re-enable disabled tests

I re-activated "broad strokes suppressions"
(ignore_noninstrumented_modules=1) in my last commit. Re-enable tests
that only fail on our bots to check if they work now.

Modified:
    compiler-rt/trunk/test/tsan/libdispatch/data.c
    compiler-rt/trunk/test/tsan/libdispatch/source-serial.c

Modified: compiler-rt/trunk/test/tsan/libdispatch/data.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/libdispatch/data.c?rev=358209&r1=358208&r2=358209&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/libdispatch/data.c (original)
+++ compiler-rt/trunk/test/tsan/libdispatch/data.c Thu Apr 11 11:34:47 2019
@@ -1,9 +1,6 @@
 // RUN: %clang_tsan %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s --implicit-check-not='ThreadSanitizer'
 
-// TODO(yln): fails on one of our bots, need to investigate
-// REQUIRES: disabled
-
 #include <dispatch/dispatch.h>
 
 #include <stdio.h>

Modified: compiler-rt/trunk/test/tsan/libdispatch/source-serial.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/libdispatch/source-serial.c?rev=358209&r1=358208&r2=358209&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/libdispatch/source-serial.c (original)
+++ compiler-rt/trunk/test/tsan/libdispatch/source-serial.c Thu Apr 11 11:34:47 2019
@@ -1,9 +1,6 @@
 // RUN: %clang_tsan %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s --implicit-check-not='ThreadSanitizer'
 
-// TODO(yln): fails on one of our bots, need to investigate
-// REQUIRES: disabled
-
 #include <dispatch/dispatch.h>
 
 #include <stdio.h>




More information about the llvm-commits mailing list