blob: c11d921e73f78a2a15a33fcaab624cf86606e4a2 [file]
//===-- Unittests for abort -----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "hdr/signal_macros.h"
#include "src/stdlib/abort.h"
#include "test/UnitTest/Test.h"
TEST(LlvmLibcStdlib, abort) {
// -1 matches against any signal, which is necessary for now until
// LIBC_NAMESPACE::abort() unblocks SIGABRT.
EXPECT_DEATH([] { LIBC_NAMESPACE::abort(); }, WITH_SIGNAL(-1));
}