webrtc/test/test_main.cc
Mirko Bonadei 0e6d36ae8c Temporary remove Abseil Failure Signal Handler.
It looks like registering the Abseil Failure Signal Handler breaks
iossim tests with the clang revision rolled by
https://chromium-review.googlesource.com/c/chromium/src/+/2025708.

Bug: chromium:1050976
Change-Id: I07969571328a290628337a1bb86d4ee3cb75fad3
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/168499
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#30507}
2020-02-12 14:42:14 +00:00

31 lines
1 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);
}