brintos

brintos / llvm-project-archived public Read only

0
0
Text · 342 B · 1672d1e Raw
12 lines · plain
1# Check that libFuzzer handles SIGTRAP; disabled on Windows due to reliance on2# posix only features3UNSUPPORTED: target={{.*windows.*}}4 5RUN: %cpp_compiler %S/SigTrapTest.cpp -o %t6 7RUN: not %run %t            2>&1 | FileCheck %s8CHECK-DAG: BINGO9CHECK-DAG: ERROR: libFuzzer: deadly signal10 11RUN: bash -c "trap '%run %t -handle_trap=0' TRAP"12