mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 22:56:05 +00:00

Test is failing on non-Windows platforms. Also undo speculative fix since it causes failures on Windows.
11 lines
348 B
Plaintext
11 lines
348 B
Plaintext
# 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: not %run %t-UncaughtException 2>&1 | FileCheck %s
|
|
|
|
CHECK: ERROR: libFuzzer: deadly signal
|
|
CHECK: Test unit written to ./crash
|