2016-07-25 18:20:57 +02:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2021-04-10 02:13:09 +02:00
|
|
|
#include <android-base/silent_death_test.h>
|
2021-02-19 02:16:09 +01:00
|
|
|
|
2021-04-10 02:13:09 +02:00
|
|
|
using assert_DeathTest = SilentDeathTest;
|
2021-02-19 02:16:09 +01:00
|
|
|
|
2016-07-25 18:20:57 +02:00
|
|
|
TEST(assert, assert_true) {
|
|
|
|
assert(true);
|
|
|
|
}
|
|
|
|
|
2021-02-19 02:16:09 +01:00
|
|
|
TEST_F(assert_DeathTest, assert_false) {
|
2016-07-25 18:20:57 +02:00
|
|
|
EXPECT_DEATH(assert(false),
|
|
|
|
"bionic/tests/assert_test.cpp:.*: "
|
2021-02-19 02:16:09 +01:00
|
|
|
"virtual void assert_DeathTest_assert_false_Test::TestBody\\(\\): "
|
2016-07-25 18:20:57 +02:00
|
|
|
"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);
|
|
|
|
}
|