[compiler-rt] r326874 - Disable tests from r326852 on Darwin
Adam Nemet via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 6 21:33:37 PST 2018
Author: anemet
Date: Tue Mar 6 21:33:37 2018
New Revision: 326874
URL: http://llvm.org/viewvc/llvm-project?rev=326874&view=rev
Log:
Disable tests from r326852 on Darwin
Darwin needs xlocale.h but I see no precedence in the code how non-Posix
headers like this are handled and I am not experienced with this code. Just
disable the tests for now to recover the bots.
rdar://38208146
Modified:
compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/strxfrm.c
compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/wcsxfrm.c
Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/strxfrm.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/strxfrm.c?rev=326874&r1=326873&r2=326874&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/strxfrm.c (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/strxfrm.c Tue Mar 6 21:33:37 2018
@@ -1,4 +1,5 @@
// RUN: %clang -O0 %s -o %t && %run %t
+// UNSUPPORTED: darwin
#include <assert.h>
#include <locale.h>
Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/wcsxfrm.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/wcsxfrm.c?rev=326874&r1=326873&r2=326874&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/wcsxfrm.c (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/wcsxfrm.c Tue Mar 6 21:33:37 2018
@@ -1,4 +1,5 @@
// RUN: %clang -O0 %s -o %t && %run %t
+// UNSUPPORTED: darwin
#include <assert.h>
#include <locale.h>
More information about the llvm-commits
mailing list