platform_bionic/tests/assert_test.cpp
Elliott Hughes 15122842ae Use BionicDeathTest for an assert(3) test.
Bug: http://b/180605583
Test: check logs
Change-Id: I5eebef156ea1185c605060fb7e9457ccaaadaf5d
2021-02-18 17:16:09 -08:00

47 lines
1.2 KiB
C++

/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#undef NDEBUG
#include <assert.h>
#include "BionicDeathTest.h"
using assert_DeathTest = BionicDeathTest;
TEST(assert, assert_true) {
assert(true);
}
TEST_F(assert_DeathTest, assert_false) {
EXPECT_DEATH(assert(false),
"bionic/tests/assert_test.cpp:.*: "
"virtual void assert_DeathTest_assert_false_Test::TestBody\\(\\): "
"assertion \"false\" failed");
}
// Re-include <assert.h> with assertions disabled.
#define NDEBUG
#include <assert.h>
TEST(assert, assert_true_NDEBUG) {
assert(true);
}
TEST(assert, assert_false_NDEBUG) {
assert(false);
}