- f9f24ecdf159c232b68a72b3be4d66854489f13e Run clang-format on all outbound Copybara-transformed code. by Daniel Katz <katzdm@google.com> - 54b1d34753a2b6999bb65e0c05255bde7de8cfb5 Properly indent the PROPERTY FOLDER calls in AbseilHelper... by Jon Cohen <cohenjon@google.com> - 540ce6bab1a7c81a15d7244b9effcb1c1378911b Fix -Wgnu-zero-variadic-macro-arguments warning under cla... by Derek Mauro <dmauro@google.com> - cc82ee3f18e882bfcba911ebc1b8ea39983f319b Suppress MSVC unreachable code warning in optional.h by Abseil Team <absl-team@google.com> - c1176bed2a7a2d20e72db2601f1044c097d8078c Change signature of __mmap2() in direct_mmap.h to match _... by Greg Falcon <gfalcon@google.com> - 5c02fe2031997fe064bd189fecc593395f34fae8 Change released benchmarks back to cc_test targets. by Alex Strelnikov <strel@google.com> - 7a342ecf7a8c56276d28d94158291fe2d64b2543 Fix sanitizer example command. by Derek Mauro <dmauro@google.com> - 0c2c55fe01cd84ab885d9f4865d7672c423680d2 Remove redundant cast; string_view::find already returns ... by Jorg Brown <jorg@google.com> GitOrigin-RevId: 2db207ef16d548380e4f5cd1d583546d0b5f7d61 Change-Id: I5b61d91c8c7b4754c839868fc73d612b31bf5c33
		
			
				
	
	
		
			155 lines
		
	
	
	
		
			4.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			155 lines
		
	
	
	
		
			4.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //
 | |
| // Copyright 2018 The Abseil Authors.
 | |
| //
 | |
| // 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 "absl/debugging/failure_signal_handler.h"
 | |
| 
 | |
| #include <csignal>
 | |
| #include <cstdio>
 | |
| #include <cstdlib>
 | |
| #include <cstring>
 | |
| #include <fstream>
 | |
| 
 | |
| #include "gtest/gtest.h"
 | |
| #include "absl/base/internal/raw_logging.h"
 | |
| #include "absl/debugging/stacktrace.h"
 | |
| #include "absl/debugging/symbolize.h"
 | |
| #include "absl/strings/match.h"
 | |
| #include "absl/strings/str_cat.h"
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| #if GTEST_HAS_DEATH_TEST
 | |
| 
 | |
| // For the parameterized death tests. GetParam() returns the signal number.
 | |
| using FailureSignalHandlerDeathTest = ::testing::TestWithParam<int>;
 | |
| 
 | |
| // This function runs in a fork()ed process on most systems.
 | |
| void InstallHandlerAndRaise(int signo) {
 | |
|   absl::InstallFailureSignalHandler(absl::FailureSignalHandlerOptions());
 | |
|   raise(signo);
 | |
| }
 | |
| 
 | |
| TEST_P(FailureSignalHandlerDeathTest, AbslFailureSignal) {
 | |
|   const int signo = GetParam();
 | |
|   std::string exit_regex = absl::StrCat(
 | |
|       "\\*\\*\\* ", absl::debugging_internal::FailureSignalToString(signo),
 | |
|       " received at time=");
 | |
| #ifndef _WIN32
 | |
|   EXPECT_EXIT(InstallHandlerAndRaise(signo), testing::KilledBySignal(signo),
 | |
|               exit_regex);
 | |
| #else
 | |
|   // Windows doesn't have testing::KilledBySignal().
 | |
|   EXPECT_DEATH(InstallHandlerAndRaise(signo), exit_regex);
 | |
| #endif
 | |
| }
 | |
| 
 | |
| ABSL_CONST_INIT FILE* error_file = nullptr;
 | |
| 
 | |
| void WriteToErrorFile(const char* msg) {
 | |
|   if (msg != nullptr) {
 | |
|     ABSL_RAW_CHECK(fwrite(msg, strlen(msg), 1, error_file) == 1,
 | |
|                    "fwrite() failed");
 | |
|   }
 | |
|   ABSL_RAW_CHECK(fflush(error_file) == 0, "fflush() failed");
 | |
| }
 | |
| 
 | |
| std::string GetTmpDir() {
 | |
|   // TEST_TMPDIR is set by Bazel. Try the others when not running under Bazel.
 | |
|   static const char* const kTmpEnvVars[] = {"TEST_TMPDIR", "TMPDIR", "TEMP",
 | |
|                                             "TEMPDIR", "TMP"};
 | |
|   for (const char* const var : kTmpEnvVars) {
 | |
|     const char* tmp_dir = std::getenv(var);
 | |
|     if (tmp_dir != nullptr) {
 | |
|       return tmp_dir;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   // Try something reasonable.
 | |
|   return "/tmp";
 | |
| }
 | |
| 
 | |
| // This function runs in a fork()ed process on most systems.
 | |
| void InstallHandlerWithWriteToFileAndRaise(const char* file, int signo) {
 | |
|   error_file = fopen(file, "w");
 | |
|   ABSL_RAW_CHECK(error_file != nullptr, "Failed create error_file");
 | |
|   absl::FailureSignalHandlerOptions options;
 | |
|   options.writerfn = WriteToErrorFile;
 | |
|   absl::InstallFailureSignalHandler(options);
 | |
|   raise(signo);
 | |
| }
 | |
| 
 | |
| TEST_P(FailureSignalHandlerDeathTest, AbslFatalSignalsWithWriterFn) {
 | |
|   const int signo = GetParam();
 | |
|   std::string tmp_dir = GetTmpDir();
 | |
|   std::string file = absl::StrCat(tmp_dir, "/signo_", signo);
 | |
| 
 | |
|   std::string exit_regex = absl::StrCat(
 | |
|       "\\*\\*\\* ", absl::debugging_internal::FailureSignalToString(signo),
 | |
|       " received at time=");
 | |
| #ifndef _WIN32
 | |
|   EXPECT_EXIT(InstallHandlerWithWriteToFileAndRaise(file.c_str(), signo),
 | |
|               testing::KilledBySignal(signo), exit_regex);
 | |
| #else
 | |
|   // Windows doesn't have testing::KilledBySignal().
 | |
|   EXPECT_DEATH(InstallHandlerWithWriteToFileAndRaise(file.c_str(), signo),
 | |
|                exit_regex);
 | |
| #endif
 | |
| 
 | |
|   // Open the file in this process and check its contents.
 | |
|   std::fstream error_output(file);
 | |
|   ASSERT_TRUE(error_output.is_open()) << file;
 | |
|   std::string error_line;
 | |
|   std::getline(error_output, error_line);
 | |
|   EXPECT_TRUE(absl::StartsWith(
 | |
|       error_line,
 | |
|       absl::StrCat("*** ",
 | |
|                    absl::debugging_internal::FailureSignalToString(signo),
 | |
|                    " received at ")));
 | |
| 
 | |
|   if (absl::debugging_internal::StackTraceWorksForTest()) {
 | |
|     std::getline(error_output, error_line);
 | |
|     EXPECT_TRUE(absl::StartsWith(error_line, "PC: "));
 | |
|   }
 | |
| }
 | |
| 
 | |
| constexpr int kFailureSignals[] = {
 | |
|     SIGSEGV, SIGILL,  SIGFPE, SIGABRT, SIGTERM,
 | |
| #ifndef _WIN32
 | |
|     SIGBUS,  SIGTRAP,
 | |
| #endif
 | |
| };
 | |
| 
 | |
| std::string SignalParamToString(const ::testing::TestParamInfo<int>& info) {
 | |
|   std::string result = absl::debugging_internal::FailureSignalToString(info.param);
 | |
|   if (result.empty()) {
 | |
|     result = absl::StrCat(info.param);
 | |
|   }
 | |
|   return result;
 | |
| }
 | |
| 
 | |
| INSTANTIATE_TEST_CASE_P(AbslDeathTest, FailureSignalHandlerDeathTest,
 | |
|                         ::testing::ValuesIn(kFailureSignals),
 | |
|                         SignalParamToString);
 | |
| 
 | |
| #endif  // GTEST_HAS_DEATH_TEST
 | |
| 
 | |
| }  // namespace
 | |
| 
 | |
| int main(int argc, char** argv) {
 | |
|   absl::InitializeSymbolizer(argv[0]);
 | |
|   testing::InitGoogleTest(&argc, argv);
 | |
|   return RUN_ALL_TESTS();
 | |
| }
 |