17 lines · plain
1# Ensures that the libFuzzer library does not export exceptions.2REQUIRES: linux3 4RUN: %cpp_compiler %S/SimpleTest.cpp -o %t5RUN: nm %t 2>&1 | FileCheck %s6 7CHECK-NOT: t __cxa_allocate_dependent_exception8CHECK-NOT: t __cxa_allocate_exception9CHECK-NOT: t __cxa_begin_catch10CHECK-NOT: t __cxa_call_unexpected11CHECK-NOT: t __cxa_current_exception_type12CHECK-NOT: t __cxa_end_catch13CHECK-NOT: t __cxa_free_dependent_exception14CHECK-NOT: t __cxa_free_exception15CHECK-NOT: t __cxa_get_exception_ptr16CHECK-NOT: t __cxa_throw17