[compiler-rt] r261236 - Clang on Windows supports exceptions, un XFAIL the passing tests
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 18 10:33:59 PST 2016
Author: rnk
Date: Thu Feb 18 12:33:58 2016
New Revision: 261236
URL: http://llvm.org/viewvc/llvm-project?rev=261236&view=rev
Log:
Clang on Windows supports exceptions, un XFAIL the passing tests
Modified:
compiler-rt/trunk/test/asan/TestCases/throw_call_test.cc
compiler-rt/trunk/test/asan/TestCases/throw_invoke_test.cc
compiler-rt/trunk/test/asan/TestCases/uar_and_exceptions.cc
Modified: compiler-rt/trunk/test/asan/TestCases/throw_call_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/throw_call_test.cc?rev=261236&r1=261235&r2=261236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/throw_call_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/throw_call_test.cc Thu Feb 18 12:33:58 2016
@@ -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) {
Modified: compiler-rt/trunk/test/asan/TestCases/throw_invoke_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/throw_invoke_test.cc?rev=261236&r1=261235&r2=261236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/throw_invoke_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/throw_invoke_test.cc Thu Feb 18 12:33:58 2016
@@ -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) {
Modified: compiler-rt/trunk/test/asan/TestCases/uar_and_exceptions.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/uar_and_exceptions.cc?rev=261236&r1=261235&r2=261236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/uar_and_exceptions.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/uar_and_exceptions.cc Thu Feb 18 12:33:58 2016
@@ -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;
More information about the llvm-commits
mailing list