mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:20:11 +01:00
Adds FATAL for things that are most likely programming errors in executable_semantics.
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include "common/check.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace Carbon {
|
|
|
|
TEST(CheckTest, CheckTrue) { CHECK(true); }
|
|
|
|
TEST(CheckTest, CheckFalse) {
|
|
ASSERT_DEATH({ CHECK(false); }, "\nCHECK failure: false\n");
|
|
}
|
|
|
|
TEST(CheckTest, CheckTrueCallbackNotUsed) {
|
|
bool called = false;
|
|
auto callback = [&]() {
|
|
called = true;
|
|
return "called";
|
|
};
|
|
CHECK(true) << callback();
|
|
EXPECT_FALSE(called);
|
|
}
|
|
|
|
TEST(CheckTest, CheckFalseMessage) {
|
|
ASSERT_DEATH({ CHECK(false) << "msg"; }, "\nCHECK failure: false: msg\n");
|
|
}
|
|
|
|
TEST(CheckTest, CheckOutputForms) {
|
|
const char msg[] = "msg";
|
|
std::string str = "str";
|
|
int i = 1;
|
|
CHECK(true) << msg << str << i << 0;
|
|
}
|
|
|
|
TEST(CheckTest, Fatal) {
|
|
ASSERT_DEATH({ FATAL() << "msg"; }, "\nFATAL: msg\n");
|
|
}
|
|
|
|
auto FatalNoReturnRequired() -> int { FATAL() << "msg"; }
|
|
|
|
TEST(ErrorTest, FatalNoReturnRequired) {
|
|
ASSERT_DEATH({ FatalNoReturnRequired(); }, "\nFATAL: msg\n");
|
|
}
|
|
|
|
} // namespace Carbon
|