Un-xfail passing ARM Android tests
authorGreg Fitzgerald <gregf@codeaurora.org>
Fri, 6 Jun 2014 18:06:58 +0000 (18:06 +0000)
committerGreg Fitzgerald <gregf@codeaurora.org>
Fri, 6 Jun 2014 18:06:58 +0000 (18:06 +0000)
llvm-svn: 210360

20 files changed:
compiler-rt/test/asan/TestCases/Linux/clone_test.cc
compiler-rt/test/asan/TestCases/Linux/glob.cc
compiler-rt/test/asan/TestCases/Linux/heavy_uar_test.cc
compiler-rt/test/asan/TestCases/Linux/malloc_delete_mismatch.cc
compiler-rt/test/asan/TestCases/Linux/ptrace.cc
compiler-rt/test/asan/TestCases/Linux/stack-trace-dlclose.cc
compiler-rt/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc
compiler-rt/test/asan/TestCases/Posix/shared-lib-test.cc
compiler-rt/test/asan/TestCases/Posix/start-deactivated.cc
compiler-rt/test/asan/TestCases/deep_stack_uaf.cc
compiler-rt/test/asan/TestCases/double-free.cc
compiler-rt/test/asan/TestCases/invalid-free.cc
compiler-rt/test/asan/TestCases/large_func_test.cc
compiler-rt/test/asan/TestCases/mmap_limit_mb.cc
compiler-rt/test/asan/TestCases/sanity_check_pure_c.c
compiler-rt/test/asan/TestCases/strncpy-overflow.cc
compiler-rt/test/asan/TestCases/use-after-delete.cc
compiler-rt/test/asan/TestCases/use-after-free-right.cc
compiler-rt/test/asan/TestCases/use-after-free.cc
compiler-rt/test/sanitizer_common/TestCases/Linux/ptrace.cc

index dfc8035..e9c1f16 100644 (file)
@@ -5,7 +5,7 @@
 // RUN: %clangxx_asan -O1 %s -o %t && %run %t | FileCheck %s
 // RUN: %clangxx_asan -O2 %s -o %t && %run %t | FileCheck %s
 // RUN: %clangxx_asan -O3 %s -o %t && %run %t | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <stdio.h>
 #include <sched.h>
index 3d81636..e0eeb33 100644 (file)
@@ -3,7 +3,7 @@
 //
 // RUN: %clangxx_asan -O0 %s -o %t && %run %t %p 2>&1 | FileCheck %s
 // RUN: %clangxx_asan -O3 %s -o %t && %run %t %p 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <assert.h>
 #include <glob.h>
index 0850228..bfea520 100644 (file)
@@ -3,7 +3,7 @@
 // RUN:   not %run %t 2>&1 | FileCheck %s
 // RUN: %clangxx_asan -O2 %s -o %t && \
 // RUN:   not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 // FIXME: Fix this test under GCC.
 // REQUIRES: Clang
index d11bcdc..085eb15 100644 (file)
@@ -12,7 +12,7 @@
 // Also works if no malloc context is available.
 // RUN: ASAN_OPTIONS=alloc_dealloc_mismatch=1:malloc_context_size=0:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s
 // RUN: ASAN_OPTIONS=alloc_dealloc_mismatch=1:malloc_context_size=0:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 #include <stdlib.h>
 
 static volatile char *x;
index e0a537a..45febd3 100644 (file)
@@ -3,7 +3,7 @@
 //
 // RUN: %clangxx_asan -O0 %s -o %t && %run %t
 // RUN: %clangxx_asan -DPOSITIVE -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <assert.h>
 #include <stdio.h>
index 0cce1b5..44c8a03 100644 (file)
@@ -4,7 +4,7 @@
 // RUN: %clangxx_asan -DSHARED %s -shared -o %T/stack_trace_dlclose.so -fPIC
 // RUN: %clangxx_asan -DSO_DIR=\"%T\" %s -o %t
 // RUN: ASAN_OPTIONS=exitcode=0 %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <assert.h>
 #include <dlfcn.h>
index 649f48b..84dc1c2 100644 (file)
@@ -7,7 +7,7 @@
 // RUN: %clangxx_asan -O0 -DSHARED_LIB %s -fPIC -shared -o %t-so.so
 // RUN: %clangxx_asan -O0 %s -ldl -o %t
 // RUN: env ASAN_OPTIONS=symbolize=0 not %run %t 2>&1 | %asan_symbolize | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>
index e96623c..21f26b3 100644 (file)
@@ -6,7 +6,7 @@
 // RUN: %clangxx_asan -O2 %s -ldl -o %t && not %run %t 2>&1 | FileCheck %s
 // RUN: %clangxx_asan -O3 -DSHARED_LIB %s -fPIC -shared -o %t-so.so
 // RUN: %clangxx_asan -O3 %s -ldl -o %t && not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>
index 81563a0..43023fb 100644 (file)
@@ -6,7 +6,7 @@
 // RUN: %clangxx -O0 %s -c -o %t.o
 // RUN: %clangxx_asan -O0 %t.o -ldl -o %t
 // RUN: ASAN_OPTIONS=start_deactivated=1 not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>
index fc424e0..accb70c 100644 (file)
@@ -2,7 +2,7 @@
 
 // RUN: %clangxx_asan -O0 %s -o %t 2>&1
 // RUN: env ASAN_OPTIONS=malloc_context_size=120:redzone=512 not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 #include <stdlib.h>
 #include <stdio.h>
 
index 27f188a..212d7ea 100644 (file)
@@ -4,7 +4,7 @@
 // Also works if no malloc context is available.
 // RUN: env ASAN_OPTIONS=malloc_context_size=0:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s
 // RUN: env ASAN_OPTIONS=malloc_context_size=0:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <stdlib.h>
 #include <string.h>
index 4bec52b..34018fb 100644 (file)
@@ -4,7 +4,7 @@
 // Also works if no malloc context is available.
 // RUN: env ASAN_OPTIONS=malloc_context_size=0:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s
 // RUN: env ASAN_OPTIONS=malloc_context_size=0:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <stdlib.h>
 #include <string.h>
index ac10e74..0d651f6 100644 (file)
@@ -2,7 +2,7 @@
 // RUN: %clangxx_asan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <stdlib.h>
 __attribute__((noinline))
index 27d38fa..1d697ef 100644 (file)
@@ -7,7 +7,7 @@
 // RUN: env ASAN_OPTIONS=mmap_limit_mb=500 %run %t 50 1000000
 // RUN: env ASAN_OPTIONS=mmap_limit_mb=500 not %run %t 500 16 2>&1 | FileCheck %s
 // RUN: env ASAN_OPTIONS=mmap_limit_mb=500 not %run %t 500 1000000 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <assert.h>
 #include <stdlib.h>
index 43d795d..01d87e7 100644 (file)
@@ -5,7 +5,7 @@
 // Sanity checking a test in pure C with -pie.
 // RUN: %clang_asan -O2 %s -pie -fPIE -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <stdlib.h>
 int main() {
index 1c6eb8c..8001047 100644 (file)
@@ -4,7 +4,7 @@
 // RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 
 // REQUIRES: compiler-rt-optimized
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <string.h>
 #include <stdlib.h>
index 3899683..f22e9e5 100644 (file)
@@ -2,7 +2,7 @@
 // RUN: %clangxx_asan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <stdlib.h>
 int main() {
index abe3659..68ac158 100644 (file)
@@ -2,7 +2,7 @@
 // RUN: %clangxx_asan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 // Test use-after-free report in the case when access is at the right border of
 // the allocation.
index 87a6e9f..0cd87ee 100644 (file)
@@ -2,7 +2,7 @@
 // RUN: %clangxx_asan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
 // RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <stdlib.h>
 int main() {
index 5b6a3e9..797e7b4 100644 (file)
@@ -1,5 +1,5 @@
 // RUN: %clangxx -O0 %s -o %t && %run %t
-// XFAIL: arm
+// XFAIL: arm-linux-gnueabi
 
 #include <assert.h>
 #include <signal.h>