mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Bug: None Change-Id: Ie3aed382d4e468c4adbfdbcc1bdb3f069d3eaae2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/181364 Commit-Queue: Artem Titov <titovartem@webrtc.org> Reviewed-by: Andrey Logvin <landrey@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31909}
34 lines
1.1 KiB
C++
34 lines
1.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 "absl/flags/parse.h"
|
|
#include "test/gmock.h"
|
|
#include "test/test_main_lib.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
// Initialize the symbolizer to get a human-readable stack trace
|
|
absl::InitializeSymbolizer(argv[0]);
|
|
testing::InitGoogleMock(&argc, argv);
|
|
absl::ParseCommandLine(argc, argv);
|
|
|
|
absl::FailureSignalHandlerOptions options;
|
|
absl::InstallFailureSignalHandler(options);
|
|
|
|
std::unique_ptr<webrtc::TestMain> main = webrtc::TestMain::Create();
|
|
int err_code = main->Init();
|
|
if (err_code != 0) {
|
|
return err_code;
|
|
}
|
|
return main->Run(argc, argv);
|
|
}
|