diff --git a/compiler-rt/test/fuzzer/uncaught-exception.test b/compiler-rt/test/fuzzer/uncaught-exception.test index ea011d0dd4fa..b055c88f6d90 100644 --- a/compiler-rt/test/fuzzer/uncaught-exception.test +++ b/compiler-rt/test/fuzzer/uncaught-exception.test @@ -1,8 +1,10 @@ # Test that throws a C++ exception and doesn't catch it. Should result in a # crash +# FIXME: Get test working on other platforms. +REQUIRES: windows RUN: %cpp_compiler %S/UncaughtException.cpp -o %t-UncaughtException -RUN: ASAN_OPTIONS=allocator_may_return_null=1 not %run %t-UncaughtException 2>&1 | FileCheck %s +RUN: not %run %t-UncaughtException 2>&1 | FileCheck %s CHECK: ERROR: libFuzzer: deadly signal CHECK: Test unit written to ./crash