blob: 2887ceab147adca62c90511536bee3624a026fb7 [file] [log] [blame]
Austin Schuh36244a12019-09-21 17:52:38 -07001// Copyright 2017 The Abseil Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include <memory>
16#include "gtest/gtest.h"
17#include "absl/base/internal/raw_logging.h"
18#include "absl/debugging/leak_check.h"
19
20namespace {
21
22TEST(LeakCheckTest, LeakMemory) {
23 // This test is expected to cause lsan failures on program exit. Therefore the
24 // test will be run only by leak_check_test.sh, which will verify a
25 // failed exit code.
26
27 char* foo = strdup("lsan should complain about this leaked string");
28 ABSL_RAW_LOG(INFO, "Should detect leaked std::string %s", foo);
29}
30
31TEST(LeakCheckTest, LeakMemoryAfterDisablerScope) {
32 // This test is expected to cause lsan failures on program exit. Therefore the
33 // test will be run only by external_leak_check_test.sh, which will verify a
34 // failed exit code.
35 { absl::LeakCheckDisabler disabler; }
36 char* foo = strdup("lsan should also complain about this leaked string");
37 ABSL_RAW_LOG(INFO, "Re-enabled leak detection.Should detect leaked std::string %s",
38 foo);
39}
40
41} // namespace