aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMirko Bonadei <mbonadei@webrtc.org>2020-05-15 15:01:54 +0200
committerCommit Bot <commit-bot@chromium.org>2020-05-15 13:54:16 +0000
commit46e9629dda1de4315b5106741cc7072b4e01548c (patch)
tree0ae6e0e955a401175423fbcb97da94fc6a46476c /test
parent9a5efe925d78d4a59f35cb2047d8099c38f6d459 (diff)
downloadwebrtc-46e9629dda1de4315b5106741cc7072b4e01548c.tar.gz
Re-enable absl FailureSignalHandler in tests.
It was not the cause of the SIGSEGV on iossim, so it is fine to re-enable it. TBR: titovartem@webrtc.org Bug: None Change-Id: I593a010f83f1a0df6b3419dd4f925380210844c9 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/175105 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Artem Titov <titovartem@webrtc.org> Reviewed-by: Markus Handell <handellm@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31277}
Diffstat (limited to 'test')
-rw-r--r--test/test_main.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test_main.cc b/test/test_main.cc
index 8555d5e6da..5046979548 100644
--- a/test/test_main.cc
+++ b/test/test_main.cc
@@ -16,11 +16,10 @@
int main(int argc, char* argv[]) {
// Initialize the symbolizer to get a human-readable stack trace
- // TODO(crbug.com/1050976): Breaks iossim tests, re-enable when fixed.
- // absl::InitializeSymbolizer(argv[0]);
+ absl::InitializeSymbolizer(argv[0]);
- // absl::FailureSignalHandlerOptions options;
- // absl::InstallFailureSignalHandler(options);
+ absl::FailureSignalHandlerOptions options;
+ absl::InstallFailureSignalHandler(options);
std::unique_ptr<webrtc::TestMain> main = webrtc::TestMain::Create();
int err_code = main->Init(&argc, argv);