diff --git a/compiler-rt/test/profile/Inputs/instrprof-gcov-multithread_fork.cpp b/compiler-rt/test/profile/Inputs/instrprof-gcov-multithread_fork.cpp --- a/compiler-rt/test/profile/Inputs/instrprof-gcov-multithread_fork.cpp +++ b/compiler-rt/test/profile/Inputs/instrprof-gcov-multithread_fork.cpp @@ -19,7 +19,10 @@ } int main() { - launcher<>(f); + try { + launcher<>(f); + } catch (...) { + } return 0; }