2017-11-17 17:48:22 -08:00
|
|
|
# Copyright 2017 The Crashpad Authors. All rights reserved.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
import("//testing/test.gni")
|
|
|
|
|
|
|
|
static_library("test") {
|
|
|
|
testonly = true
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"errors.cc",
|
|
|
|
"errors.h",
|
|
|
|
"file.cc",
|
|
|
|
"file.h",
|
|
|
|
"filesystem.cc",
|
|
|
|
"filesystem.h",
|
mac: Tests that crash intentionally shouldn’t go to ReportCrash
Crashpad has many tests that crash intentionally. Some of these are
gtest death tests, and others arrange for intentional crashes to test
Crashpad’s own crash-catching logic. On macOS, all of the gtest death
tests and some of the other intentional crashes were being logged by
ReportCrash, the system’s crash reporter. Since these reports
corresponded to intentional crashes, they were never useful, and served
only to clutter ~/Library/Logs/DiagnosticReports.
Since Crashpad is adept at handling exceptions on its own, this
introduces the “exception swallowing server”,
crashpad_exception_swallower, which is a Mach exception server that
implements a no-op exception handler routine for all exceptions
received. The exception swallowing server is established as the task
handler for EXC_CRASH and EXC_CORPSE_NOTIFY exceptions during gtest
death tests invoked by {ASSERT,EXPECT}_DEATH_{CHECK,CRASH}, and for all
child processes invoked by the Multiprocess test infrastructure. The
exception swallowing server is not in effect at other times, so
unexpected crashes in test code can still be handled by ReportCrash or
another crash reporter.
With this change in place, no new reports are generated in the
user-level ~/Library/Logs/DiagnosticReports or the system’s
/Library/Logs/DiagnosticReports during a run of Crashpad’s full test
suite on macOS.
Bug: crashpad:33
Change-Id: I13891853a7e25accc30da21fa7ea8bd7d1f3bd2f
Reviewed-on: https://chromium-review.googlesource.com/777859
Commit-Queue: Mark Mentovai <mark@chromium.org>
Reviewed-by: Robert Sesek <rsesek@chromium.org>
2017-11-20 13:32:26 -05:00
|
|
|
"gtest_death.h",
|
2017-11-17 17:48:22 -08:00
|
|
|
"gtest_disabled.cc",
|
|
|
|
"gtest_disabled.h",
|
|
|
|
"hex_string.cc",
|
|
|
|
"hex_string.h",
|
|
|
|
"main_arguments.cc",
|
|
|
|
"main_arguments.h",
|
|
|
|
"multiprocess.h",
|
|
|
|
"multiprocess_exec.h",
|
|
|
|
"scoped_module_handle.cc",
|
|
|
|
"scoped_module_handle.h",
|
|
|
|
"scoped_temp_dir.cc",
|
|
|
|
"scoped_temp_dir.h",
|
|
|
|
"test_paths.cc",
|
|
|
|
"test_paths.h",
|
|
|
|
]
|
|
|
|
|
2017-11-30 09:59:59 -08:00
|
|
|
if (is_posix) {
|
|
|
|
sources += [
|
|
|
|
"multiprocess_posix.cc",
|
|
|
|
"scoped_temp_dir_posix.cc",
|
|
|
|
]
|
|
|
|
|
|
|
|
if (!is_fuchsia) {
|
|
|
|
sources += [ "multiprocess_exec_posix.cc" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 11:59:18 -08:00
|
|
|
if (is_mac) {
|
|
|
|
sources += [
|
|
|
|
"mac/dyld.cc",
|
|
|
|
"mac/dyld.h",
|
|
|
|
"mac/exception_swallower.cc",
|
|
|
|
"mac/exception_swallower.h",
|
|
|
|
"mac/mach_errors.cc",
|
|
|
|
"mac/mach_errors.h",
|
|
|
|
"mac/mach_multiprocess.cc",
|
|
|
|
"mac/mach_multiprocess.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_win) {
|
|
|
|
sources += [
|
2017-11-30 09:59:59 -08:00
|
|
|
"multiprocess_exec_win.cc",
|
|
|
|
"scoped_temp_dir_win.cc",
|
2017-11-29 11:59:18 -08:00
|
|
|
"win/child_launcher.cc",
|
|
|
|
"win/child_launcher.h",
|
|
|
|
"win/win_child_process.cc",
|
|
|
|
"win/win_child_process.h",
|
|
|
|
"win/win_multiprocess.cc",
|
|
|
|
"win/win_multiprocess.h",
|
|
|
|
"win/win_multiprocess_with_temp_dir.cc",
|
|
|
|
"win/win_multiprocess_with_temp_dir.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-11-28 10:31:13 -08:00
|
|
|
public_configs = [ "..:crashpad_config" ]
|
2017-11-17 17:48:22 -08:00
|
|
|
|
2017-11-30 12:38:27 -08:00
|
|
|
configs += [ "../build:crashpad_in_chromium" ]
|
2017-11-17 17:48:22 -08:00
|
|
|
|
|
|
|
data = [
|
|
|
|
"test_paths_test_data_root.txt",
|
|
|
|
]
|
|
|
|
|
|
|
|
deps = [
|
2017-11-28 10:31:13 -08:00
|
|
|
"../compat",
|
|
|
|
"../util",
|
2017-11-17 17:48:22 -08:00
|
|
|
"//base",
|
|
|
|
"//testing/gtest",
|
|
|
|
]
|
2017-11-29 18:04:25 -05:00
|
|
|
|
|
|
|
if (is_mac) {
|
|
|
|
libs = [ "bsm" ]
|
2017-12-06 13:07:51 -05:00
|
|
|
deps += [
|
|
|
|
"../handler",
|
|
|
|
"../snapshot",
|
|
|
|
]
|
2017-11-29 18:04:25 -05:00
|
|
|
}
|
2017-11-17 17:48:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
source_set("test_test") {
|
|
|
|
testonly = true
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"hex_string_test.cc",
|
|
|
|
"main_arguments_test.cc",
|
|
|
|
"scoped_temp_dir_test.cc",
|
|
|
|
"test_paths_test.cc",
|
|
|
|
]
|
|
|
|
|
2017-12-05 10:52:44 -08:00
|
|
|
if (is_posix && !is_fuchsia) {
|
|
|
|
sources += [ "multiprocess_posix_test.cc" ]
|
|
|
|
}
|
|
|
|
|
2017-11-29 11:59:18 -08:00
|
|
|
if (is_mac) {
|
|
|
|
sources += [ "mac/mach_multiprocess_test.cc" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_win) {
|
|
|
|
sources += [
|
|
|
|
"win/win_child_process_test.cc",
|
|
|
|
"win/win_multiprocess_test.cc",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-12-05 10:52:44 -08:00
|
|
|
if (!is_fuchsia) {
|
|
|
|
sources += [
|
|
|
|
# TODO(scottmg): A MultiprocessExecFuchsia is probably desirable, but
|
|
|
|
# hasn't been implemented yet.
|
|
|
|
"multiprocess_exec_test.cc",
|
|
|
|
]
|
2017-11-17 17:48:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":test",
|
2017-11-28 10:31:13 -08:00
|
|
|
"../compat",
|
|
|
|
"../util",
|
2017-11-17 17:48:22 -08:00
|
|
|
"//base",
|
|
|
|
"//testing/gmock",
|
|
|
|
"//testing/gtest",
|
|
|
|
]
|
|
|
|
|
|
|
|
data_deps = [
|
|
|
|
":crashpad_test_test_multiprocess_exec_test_child",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
executable("crashpad_test_test_multiprocess_exec_test_child") {
|
|
|
|
sources = [
|
|
|
|
"multiprocess_exec_test_child.cc",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
static_library("gmock_main") {
|
|
|
|
testonly = true
|
|
|
|
sources = [
|
|
|
|
"gtest_main.cc",
|
|
|
|
]
|
2017-11-30 12:38:27 -08:00
|
|
|
configs += [ "../build:crashpad_in_chromium" ]
|
|
|
|
defines = [ "CRASHPAD_TEST_LAUNCHER_GMOCK" ]
|
2017-11-17 17:48:22 -08:00
|
|
|
deps = [
|
|
|
|
":test",
|
|
|
|
"//base",
|
|
|
|
"//base/test:test_support",
|
|
|
|
"//testing/gmock",
|
|
|
|
"//testing/gtest",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
static_library("gtest_main") {
|
|
|
|
testonly = true
|
|
|
|
sources = [
|
|
|
|
"gtest_main.cc",
|
|
|
|
]
|
2017-11-30 12:38:27 -08:00
|
|
|
configs += [ "../build:crashpad_in_chromium" ]
|
|
|
|
defines = [ "CRASHPAD_TEST_LAUNCHER_GTEST" ]
|
2017-11-17 17:48:22 -08:00
|
|
|
deps = [
|
|
|
|
":test",
|
|
|
|
"//base",
|
|
|
|
"//base/test:test_support",
|
|
|
|
"//testing/gtest",
|
|
|
|
]
|
|
|
|
}
|