| 712 | extern "C" int __llvm_profile_write_file(void); |
| 713 | |
| 714 | static void GracefulShutdownHandler(int) { |
| 715 | try { |
| 716 | __llvm_profile_write_file(); |
| 717 | } catch (...) { |
| 718 | } |
| 719 | abort(); |
| 720 | } |
| 721 | #endif |
| 722 | |
| 723 | int NUnitTest::RunMain(int argc, char** argv) { |
nothing calls this directly
no test coverage detected