abseil-cpp/absl/debugging/leak_check_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 <string>
16 
17 #include "gtest/gtest.h"
18 #include "absl/base/config.h"
19 #include "absl/base/internal/raw_logging.h"
20 #include "absl/debugging/leak_check.h"
21 
22 namespace {
23 
24 TEST(LeakCheckTest, IgnoreLeakSuppressesLeakedMemoryErrors) {
26  GTEST_SKIP() << "LeakChecker is not active";
27  }
28  auto foo = absl::IgnoreLeak(new std::string("some ignored leaked string"));
29  ABSL_RAW_LOG(INFO, "Ignoring leaked string %s", foo->c_str());
30 }
31 
32 TEST(LeakCheckTest, LeakCheckDisablerIgnoresLeak) {
34  GTEST_SKIP() << "LeakChecker is not active";
35  }
36  absl::LeakCheckDisabler disabler;
37  auto foo = new std::string("some string leaked while checks are disabled");
38  ABSL_RAW_LOG(INFO, "Ignoring leaked string %s", foo->c_str());
39 }
40 
41 } // namespace
absl::LeakCheckDisabler
Definition: abseil-cpp/absl/debugging/leak_check.h:125
testing::internal::string
::std::string string
Definition: bloaty/third_party/protobuf/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:881
foo
Definition: bloaty/third_party/googletest/googletest/test/googletest-output-test_.cc:546
GTEST_SKIP
#define GTEST_SKIP()
Definition: perf_counters_gtest.cc:10
TEST
#define TEST(name, init_size,...)
Definition: arena_test.cc:75
python_utils.jobset.INFO
INFO
Definition: jobset.py:111
absl::IgnoreLeak
T * IgnoreLeak(T *ptr)
Definition: abseil-cpp/absl/debugging/leak_check.h:92
absl::LeakCheckerIsActive
bool LeakCheckerIsActive()
Definition: abseil-cpp/absl/debugging/leak_check.cc:64
ABSL_RAW_LOG
#define ABSL_RAW_LOG(severity,...)
Definition: abseil-cpp/absl/base/internal/raw_logging.h:44


grpc
Author(s):
autogenerated on Fri May 16 2025 02:59:15