This reverts commit 46e9629dda1de4315b5106741cc7072b4e01548c. Reason for revert: Speculative revert. Original change's description: > 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} TBR=mbonadei@webrtc.org,titovartem@webrtc.org,handellm@webrtc.org Change-Id: I5e8456ea2918f740428517ee7eb5c561cb016652 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: None Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/175112 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31280}
32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
/*
|
|
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <memory>
|
|
|
|
#include "absl/debugging/failure_signal_handler.h"
|
|
#include "absl/debugging/symbolize.h"
|
|
#include "test/test_main_lib.h"
|
|
|
|
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::FailureSignalHandlerOptions options;
|
|
// absl::InstallFailureSignalHandler(options);
|
|
|
|
std::unique_ptr<webrtc::TestMain> main = webrtc::TestMain::Create();
|
|
int err_code = main->Init(&argc, argv);
|
|
if (err_code != 0) {
|
|
return err_code;
|
|
}
|
|
return main->Run(argc, argv);
|
|
}
|