1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:07:36 +00:00

LibTest: Convert Crash test runner to outln(..)

This commit is contained in:
Brian Gianforcaro 2021-05-07 13:40:18 -07:00 committed by Linus Groh
parent 7f51754780
commit 4b8b8b91c2

View file

@ -20,19 +20,19 @@ Crash::Crash(String test_type, Function<Crash::Failure()> crash_function)
bool Crash::run(RunType run_type) bool Crash::run(RunType run_type)
{ {
printf("\x1B[33mTesting\x1B[0m: \"%s\"\n", m_type.characters()); outln("\x1B[33mTesting\x1B[0m: \"{}\"", m_type);
auto run_crash_and_print_if_error = [this]() -> bool { auto run_crash_and_print_if_error = [this]() -> bool {
auto failure = m_crash_function(); auto failure = m_crash_function();
// If we got here something went wrong // If we got here something went wrong
printf("\x1B[31mFAIL\x1B[0m: "); out("\x1B[31mFAIL\x1B[0m: ");
switch (failure) { switch (failure) {
case Failure::DidNotCrash: case Failure::DidNotCrash:
printf("Did not crash!\n"); outln("Did not crash!");
break; break;
case Failure::UnexpectedError: case Failure::UnexpectedError:
printf("Unexpected error!\n"); outln("Unexpected error!");
break; break;
default: default:
VERIFY_NOT_REACHED(); VERIFY_NOT_REACHED();
@ -43,7 +43,6 @@ bool Crash::run(RunType run_type)
if (run_type == RunType::UsingCurrentProcess) { if (run_type == RunType::UsingCurrentProcess) {
return run_crash_and_print_if_error(); return run_crash_and_print_if_error();
} else { } else {
// Run the test in a child process so that we do not crash the crash program :^) // Run the test in a child process so that we do not crash the crash program :^)
pid_t pid = fork(); pid_t pid = fork();
if (pid < 0) { if (pid < 0) {
@ -57,7 +56,7 @@ bool Crash::run(RunType run_type)
int status; int status;
waitpid(pid, &status, 0); waitpid(pid, &status, 0);
if (WIFSIGNALED(status)) { if (WIFSIGNALED(status)) {
printf("\x1B[32mPASS\x1B[0m: Terminated with signal %d\n", WTERMSIG(status)); outln("\x1B[32mPASS\x1B[0m: Terminated with signal {}", WTERMSIG(status));
return true; return true;
} }
return false; return false;