mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 11:36:07 +00:00

`_LIBCPP_ENABLE_ASSERTIONS` was used to enable the "safe" mode in libc++. Libc++ now provides the hardened mode and the debug mode that replace the safe mode. For backward compatibility, enabling `_LIBCPP_ENABLE_ASSERTIONS` now enables the hardened mode. Note that the hardened mode provides a narrower set of checks than the previous "safe" mode (only security-critical checks that are performant enough to be used in production). Differential Revision: https://reviews.llvm.org/D154997
25 lines
835 B
C++
25 lines
835 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// REQUIRES: has-unix-headers
|
|
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
|
|
// UNSUPPORTED: !libcpp-has-hardened-mode && !libcpp-has-debug-mode
|
|
// XFAIL: availability-verbose_abort-missing
|
|
|
|
// Make sure that reaching std::unreachable() with assertions enabled triggers an assertion.
|
|
|
|
#include <utility>
|
|
|
|
#include "check_assertion.h"
|
|
|
|
int main(int, char**) {
|
|
TEST_LIBCPP_ASSERT_FAILURE(std::unreachable(), "std::unreachable() was reached");
|
|
|
|
return 0;
|
|
}
|