Clang on Windows supports exceptions, un XFAIL the passing tests
authorReid Kleckner <rnk@google.com>
Thu, 18 Feb 2016 18:33:58 +0000 (18:33 +0000)
committerReid Kleckner <rnk@google.com>
Thu, 18 Feb 2016 18:33:58 +0000 (18:33 +0000)
llvm-svn: 261236

compiler-rt/test/asan/TestCases/throw_call_test.cc
compiler-rt/test/asan/TestCases/throw_invoke_test.cc
compiler-rt/test/asan/TestCases/uar_and_exceptions.cc

index 4b3910d..5a8204a 100644 (file)
@@ -5,9 +5,6 @@
 // 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 3e594b6..e6e91d1 100644 (file)
@@ -1,9 +1,6 @@
 // RUN: %clangxx_asan %s -o %t && %run %t
 // RUN: %clangxx_asan %s -o %t -stdlib=libstdc++ -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 324e8a5..2357ae8 100644 (file)
@@ -2,9 +2,6 @@
 // RUN: %clangxx_asan -O0 %s -o %t
 // RUN: %env_asan_opts=detect_stack_use_after_return=1 %run %t
 
-// Clang doesn't support exceptions on Windows yet.
-// XFAIL: win32
-
 #include <stdio.h>
 
 volatile char *g;