mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
35 lines
774 B
C++
35 lines
774 B
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibTest/TestCase.h>
|
|
|
|
#include <signal.h>
|
|
#include <stdlib.h>
|
|
|
|
TEST_CASE(_abort)
|
|
{
|
|
EXPECT_CRASH("This should _abort", [] {
|
|
_abort();
|
|
return Test::Crash::Failure::DidNotCrash;
|
|
});
|
|
EXPECT_CRASH_WITH_SIGNAL("This should _abort with SIGILL signal", SIGILL, [] {
|
|
_abort();
|
|
return Test::Crash::Failure::DidNotCrash;
|
|
});
|
|
}
|
|
|
|
TEST_CASE(abort)
|
|
{
|
|
EXPECT_CRASH("This should abort", [] {
|
|
abort();
|
|
return Test::Crash::Failure::DidNotCrash;
|
|
});
|
|
EXPECT_CRASH_WITH_SIGNAL("This should abort with SIGABRT signal", SIGABRT, [] {
|
|
abort();
|
|
return Test::Crash::Failure::DidNotCrash;
|
|
});
|
|
}
|