Lines Matching refs:exit
745 bool exit; // if the program should be exited after the tests are ran/whatever
4230 std::exit(EXIT_FAILURE);
4257 std::exit(EXIT_FAILURE); // explicitly exit - otherwise the SIGABRT handler may be called as well
4269 std::exit(EXIT_FAILURE);
5692 s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "e, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "exit=<bool> "
6192 DOCTEST_PARSE_AS_BOOL_OR_FLAG("exit", "e", exit, false);
6222 p->exit = true;
6227 p->exit = true;
6232 p->exit = true;
6237 p->exit = true;
6242 p->exit = true;
6247 p->exit = true;
6273 // users should query this in their main() and exit the program if true
6274 bool Context::shouldExit() { return p->exit; }
6499 // exit this loop if enough assertions have failed - even if there are more subcases