aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLingfeng Yang <lfy@google.com>2019-12-11 12:45:20 -0800
committerLingfeng Yang <lfy@google.com>2019-12-11 12:45:20 -0800
commita1414818b9f9810a3b45f1f55d9c00f5116ec7d9 (patch)
tree09e64bea74cb12a652ba8220ae8d8329da85c3ec
parent1ded88dcd4b8705dab3fe64b3311b1ec5882b9e4 (diff)
downloadgoogle-breakpad-emu-30-release.tar.gz
Disable problematic test that doesn't work on CIPD buildemu-30-releaseaosp-emu-30-release
bug: https://bugs.fuchsia.dev/p/fuchsia/issues/detail?id=37301#c26 Change-Id: I495c36cda6b1b277f67a6b1e5b8816c8b311f354
-rw-r--r--src/client/linux/handler/exception_handler_unittest.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/linux/handler/exception_handler_unittest.cc b/src/client/linux/handler/exception_handler_unittest.cc
index bcbf9c26..6b48f0c2 100644
--- a/src/client/linux/handler/exception_handler_unittest.cc
+++ b/src/client/linux/handler/exception_handler_unittest.cc
@@ -271,9 +271,10 @@ static void* CrashFunction(void* b_ptr) {
return NULL;
}
+// Disabled (doesn't work in CIPD build env: https://bugs.fuchsia.dev/p/fuchsia/issues/detail?id=37301#c26)
// Tests that concurrent crashes do not enter a loop by alternately triggering
// the signal handler.
-TEST(ExceptionHandlerTest, ParallelChildCrashesDontHang) {
+TEST(ExceptionHandlerTest, DISABLED_ParallelChildCrashesDontHang) {
AutoTempDir temp_dir;
const pid_t child = fork();
if (child == 0) {