Mark currently failing ARM tests with XFAIL.
authorGreg Fitzgerald <gregf@codeaurora.org>
Thu, 29 May 2014 23:34:47 +0000 (23:34 +0000)
committerGreg Fitzgerald <gregf@codeaurora.org>
Thu, 29 May 2014 23:34:47 +0000 (23:34 +0000)
Differential Revision: http://reviews.llvm.org/D3857

llvm-svn: 209862

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/gc-test.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

index bc6ef08..dfc8035 100644 (file)
@@ -5,6 +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
 
 #include <stdio.h>
 #include <sched.h>
index 2cc8f41..3d81636 100644 (file)
@@ -3,6 +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
 
 #include <assert.h>
 #include <glob.h>
index cedd69d..0850228 100644 (file)
@@ -3,6 +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
 
 // FIXME: Fix this test under GCC.
 // REQUIRES: Clang
index c9f61d8..d11bcdc 100644 (file)
@@ -12,6 +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
 #include <stdlib.h>
 
 static volatile char *x;
index 94037ce..e0a537a 100644 (file)
@@ -3,6 +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
 
 #include <assert.h>
 #include <stdio.h>
index 4c9a934..0cce1b5 100644 (file)
@@ -4,6 +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
 
 #include <assert.h>
 #include <dlfcn.h>
index b1376ea..649f48b 100644 (file)
@@ -7,6 +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
 
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>
index ccaeed6..e96623c 100644 (file)
@@ -6,6 +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
 
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>
index ac45c16..81563a0 100644 (file)
@@ -6,6 +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
 
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>
index 9ce27d5..fc424e0 100644 (file)
@@ -2,6 +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
 #include <stdlib.h>
 #include <stdio.h>
 
index 6bbca24..27f188a 100644 (file)
@@ -4,6 +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
 
 #include <stdlib.h>
 #include <string.h>
index 76113ec..958eb74 100644 (file)
@@ -1,6 +1,7 @@
 // RUN: %clangxx_asan %s -pthread -o %t
 // RUN: env ASAN_OPTIONS=detect_stack_use_after_return=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK1
 // RUN: env ASAN_OPTIONS=detect_stack_use_after_return=0 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK0
+// XFAIL: arm
 
 #include <assert.h>
 #include <stdio.h>
index fdfec73..4bec52b 100644 (file)
@@ -4,6 +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
 
 #include <stdlib.h>
 #include <string.h>
index bdd6f8f..ac10e74 100644 (file)
@@ -2,6 +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
 
 #include <stdlib.h>
 __attribute__((noinline))
index 5fc0295..27d38fa 100644 (file)
@@ -7,6 +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
 
 #include <assert.h>
 #include <stdlib.h>
index 0ec86af..43d795d 100644 (file)
@@ -5,6 +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
 
 #include <stdlib.h>
 int main() {
index 0d70b79..1c6eb8c 100644 (file)
@@ -4,6 +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
 
 #include <string.h>
 #include <stdlib.h>
index 7696e18..3899683 100644 (file)
@@ -2,6 +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
 
 #include <stdlib.h>
 int main() {
index 16c4348..abe3659 100644 (file)
@@ -2,6 +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
 
 // Test use-after-free report in the case when access is at the right border of
 // the allocation.
index 7f77aac..87a6e9f 100644 (file)
@@ -2,6 +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
 
 #include <stdlib.h>
 int main() {