grpc
third_party
abseil-cpp
absl
debugging
abseil-cpp/absl/debugging/leak_check_fail_test.cc
Go to the documentation of this file.
1
// 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
20
namespace
{
21
22
TEST
(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 string %s"
,
foo
);
29
}
30
31
TEST
(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 string %s"
,
38
foo
);
39
}
40
41
}
// namespace
absl::LeakCheckDisabler
Definition:
abseil-cpp/absl/debugging/leak_check.h:125
foo
Definition:
bloaty/third_party/googletest/googletest/test/googletest-output-test_.cc:546
TEST
#define TEST(name, init_size,...)
Definition:
arena_test.cc:75
python_utils.jobset.INFO
INFO
Definition:
jobset.py:111
ABSL_RAW_LOG
#define ABSL_RAW_LOG(severity,...)
Definition:
abseil-cpp/absl/base/internal/raw_logging.h:44
strdup
#define strdup(ptr)
Definition:
acountry.c:55
grpc
Author(s):
autogenerated on Fri May 16 2025 02:59:15