[ASan tests] Exclude some tests from Windows runs
authorTimur Iskhodzhanov <timurrrr@google.com>
Wed, 28 May 2014 13:06:14 +0000 (13:06 +0000)
committerTimur Iskhodzhanov <timurrrr@google.com>
Wed, 28 May 2014 13:06:14 +0000 (13:06 +0000)
Some features are not supported yet and some are not planned to be fixed soon

llvm-svn: 209733

17 files changed:
compiler-rt/test/asan/TestCases/default_options.cc
compiler-rt/test/asan/TestCases/free_hook_realloc.cc
compiler-rt/test/asan/TestCases/log-path_test.cc
compiler-rt/test/asan/TestCases/malloc_context_size.cc
compiler-rt/test/asan/TestCases/malloc_hook.cc
compiler-rt/test/asan/TestCases/on_error_callback.cc
compiler-rt/test/asan/TestCases/printf-1.c
compiler-rt/test/asan/TestCases/printf-2.c
compiler-rt/test/asan/TestCases/printf-3.c
compiler-rt/test/asan/TestCases/printf-4.c
compiler-rt/test/asan/TestCases/printf-5.c
compiler-rt/test/asan/TestCases/strdup_oob_test.cc
compiler-rt/test/asan/TestCases/throw_call_test.cc
compiler-rt/test/asan/TestCases/throw_catch.cc
compiler-rt/test/asan/TestCases/throw_invoke_test.cc
compiler-rt/test/asan/TestCases/time_interceptor.cc
compiler-rt/test/asan/TestCases/uar_and_exceptions.cc

index c77dd49..6453f66 100644 (file)
@@ -1,6 +1,9 @@
 // RUN: %clangxx_asan -O2 %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s
 
+// __asan_default_options() are not supported on Windows.
+// XFAIL: win32
+
 const char *kAsanDefaultOptions="verbosity=1 foo=bar";
 
 extern "C"
index 2040cad..14cdae5 100644 (file)
@@ -1,6 +1,10 @@
 // Check that free hook doesn't conflict with Realloc.
 // RUN: %clangxx_asan -O2 %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s
+
+// Malloc/free hooks are not supported on Windows.
+// XFAIL: win32
+
 #include <stdlib.h>
 #include <unistd.h>
 
index cac0c5f..f68c94c 100644 (file)
@@ -23,6 +23,8 @@
 // RUN: env ASAN_OPTIONS=log_path=%t.log  %run %t ARG ARG ARG
 // RUN: not cat %t.log.*
 
+// FIXME: log_path is not supported on Windows yet.
+// XFAIL: win32
 
 #include <stdlib.h>
 #include <string.h>
index 9f7ba40..fb158c6 100644 (file)
@@ -16,12 +16,16 @@ int main() {
   // CHECK-Linux-NEXT: #0 0x{{.*}} in operator delete[]
   // CHECK-Darwin: freed by thread T{{.*}} here:
   // CHECK-Darwin-NEXT: #0 0x{{.*}} in wrap__ZdaPv
+  // CHECK-Windows: freed by thread T{{.*}} here:
+  // CHECK-Windows-NEXT: #0 0x{{.*}} in operator delete[]
   // CHECK-NOT: #1 0x{{.*}}
 
   // CHECK-Linux: previously allocated by thread T{{.*}} here:
   // CHECK-Linux-NEXT: #0 0x{{.*}} in operator new[]
   // CHECK-Darwin: previously allocated by thread T{{.*}} here:
   // CHECK-Darwin-NEXT: #0 0x{{.*}} in wrap__Znam
+  // CHECK-Windows: previously allocated by thread T{{.*}} here:
+  // CHECK-Windows-NEXT: #0 0x{{.*}} in operator new[]
   // CHECK-NOT: #1 0x{{.*}}
 
   // CHECK: SUMMARY: AddressSanitizer: heap-use-after-free
index c535ef8..41ba645 100644 (file)
@@ -1,5 +1,9 @@
 // RUN: %clangxx_asan -O2 %s -o %t
 // RUN: %run %t 2>&1 | FileCheck %s
+
+// Malloc/free hooks are not supported on Windows.
+// XFAIL: win32
+
 #include <stdlib.h>
 #include <unistd.h>
 
index 0ad83d5..c378c8b 100644 (file)
@@ -1,5 +1,8 @@
 // RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// FIXME: __asan_on_error() is not supported on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 #include <stdlib.h>
 
index dee00a5..5657083 100644 (file)
@@ -4,6 +4,10 @@
 // RUN: %run %t 2>&1 | FileCheck %s
 
 #include <stdio.h>
+#if defined(_WIN32)
+# define snprintf _snprintf
+#endif
+
 int main() {
   volatile char c = '0';
   volatile int x = 12;
index f12c0b7..e9cb47e 100644 (file)
@@ -5,6 +5,9 @@
 // RUN: env ASAN_OPTIONS=replace_str=0:replace_intrin=0:check_printf=0 %run %t 2>&1 | FileCheck --check-prefix=CHECK-OFF %s
 // RUN: env ASAN_OPTIONS=replace_str=0:replace_intrin=0 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-ON %s
 
+// FIXME: printf is not intercepted on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 387f6d5..d16833d 100644 (file)
@@ -3,6 +3,9 @@
 // RUN: env ASAN_OPTIONS=check_printf=0 %run %t 2>&1 | FileCheck --check-prefix=CHECK-OFF %s
 // RUN: not %run %t 2>&1 | FileCheck --check-prefix=CHECK-ON %s
 
+// FIXME: printf is not intercepted on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 int main() {
   volatile char c = '0';
index b219d6f..e269211 100644 (file)
@@ -4,6 +4,9 @@
 // RUN: env ASAN_OPTIONS=replace_str=0:replace_intrin=0:check_printf=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-ON %s
 // RUN: env ASAN_OPTIONS=replace_str=0:replace_intrin=0 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-ON %s
 
+// FIXME: printf is not intercepted on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 int main() {
   volatile char c = '0';
index 5bb43cb..ac2c1c4 100644 (file)
@@ -4,6 +4,9 @@
 // RUN: env ASAN_OPTIONS=replace_intrin=0:check_printf=0 %run %t 2>&1 | FileCheck --check-prefix=CHECK-OFF %s
 // RUN: env ASAN_OPTIONS=replace_intrin=0 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-ON %s
 
+// FIXME: printf is not intercepted on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 #include <string.h>
 int main() {
index 7716ee5..a039568 100644 (file)
@@ -12,8 +12,9 @@ int main(int argc, char **argv) {
   int x = copy[4 + argc];  // BOOM
   // CHECK: AddressSanitizer: heap-buffer-overflow
   // CHECK: #0 {{.*}}main {{.*}}strdup_oob_test.cc:[[@LINE-2]]
-  // CHECK: allocated by thread T{{.*}} here:
-  // CHECK: #0 {{.*}}strdup
+  // CHECK-LABEL: allocated by thread T{{.*}} here:
+  // CHECK: #{{[01]}} {{.*}}strdup
+  // CHECK-LABEL: SUMMARY
   // CHECK: strdup_oob_test.cc:[[@LINE-6]]
   return x;
 }
index dff112f..20e9a5e 100644 (file)
@@ -5,6 +5,9 @@
 // Android builds with static libstdc++ by default.
 // XFAIL: android
 
+// Clang doesn't support exceptions on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 static volatile int zero = 0;
 inline void pretend_to_do_something(void *x) {
index bb41946..f35378d 100644 (file)
@@ -1,5 +1,8 @@
 // RUN: %clangxx_asan -O %s -o %t && %run %t
 
+// Clang doesn't support exceptions on Windows yet.
+// XFAIL: win32
+
 #include <assert.h>
 #include <setjmp.h>
 #include <stdlib.h>
index 2fc557d..ec48fc7 100644 (file)
@@ -1,5 +1,9 @@
 // RUN: %clangxx_asan %s -o %t && %run %t
 // RUN: %clangxx_asan %s -o %t -static-libstdc++ && %run %t
+
+// Clang doesn't support exceptions on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 static volatile int zero = 0;
 inline void pretend_to_do_something(void *x) {
index 4fbd433..147ce88 100644 (file)
@@ -2,6 +2,9 @@
 
 // Test the time() interceptor.
 
+// There's no interceptor for time() on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <time.h>
index 2e0c864..0bfe297 100644 (file)
@@ -2,6 +2,9 @@
 // export ASAN_OPTIONS=detect_stack_use_after_return=1
 // RUN: %clangxx_asan  -O0 %s -o %t && %run %t
 
+// Clang doesn't support exceptions on Windows yet.
+// XFAIL: win32
+
 #include <stdio.h>
 
 volatile char *g;