[compiler-rt] r303338 - Fixup r303324 - temporary disable stndup interceptor, due to r302781 being buggy

Diana Picus via llvm-commits llvm-commits at lists.llvm.org
Thu May 18 02:12:28 PDT 2017


Author: rovka
Date: Thu May 18 04:12:27 2017
New Revision: 303338

URL: http://llvm.org/viewvc/llvm-project?rev=303338&view=rev
Log:
Fixup r303324 - temporary disable stndup interceptor, due to r302781 being buggy

r303324 missed one of the tests added by r302781. This commit applies
the same fix as r303324 to the missed test (strndup.cc).

Modified:
    compiler-rt/trunk/test/msan/strndup.cc

Modified: compiler-rt/trunk/test/msan/strndup.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/strndup.cc?rev=303338&r1=303337&r2=303338&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/strndup.cc (original)
+++ compiler-rt/trunk/test/msan/strndup.cc Thu May 18 04:12:27 2017
@@ -1,8 +1,9 @@
-// RUN: %clangxx_msan %s -o %t && not %run %t 2>&1 | FileCheck --check-prefix=ON %s
-// RUN: %clangxx_msan %s -o %t && MSAN_OPTIONS=intercept_strndup=0 %run %t 2>&1 | FileCheck --check-prefix=OFF --allow-empty %s
+// RUN: echo DISABLED
+// DISABLED: %clangxx_msan %s -o %t && not %run %t 2>&1 | FileCheck --check-prefix=ON %s
+// DISABLED: %clangxx_msan %s -o %t && MSAN_OPTIONS=intercept_strndup=0 %run %t 2>&1 | FileCheck --check-prefix=OFF --allow-empty %s
 
 // When built as C on Linux, strndup is transformed to __strndup.
-// RUN: %clangxx_msan -O3 -xc %s -o %t && not %run %t 2>&1 | FileCheck --check-prefix=ON %s
+// DISABLED: %clangxx_msan -O3 -xc %s -o %t && not %run %t 2>&1 | FileCheck --check-prefix=ON %s
 
 // UNSUPPORTED: win32
 




More information about the llvm-commits mailing list