
Extract functionality of test_main into separate library to be able to reuse it if another main will be required. Bug: webrtc:5996 Change-Id: I2925b4240bd0e4fb884b43bb16667ca2d6216bbd Reviewed-on: https://webrtc-review.googlesource.com/c/105921 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25172}
23 lines
695 B
C++
23 lines
695 B
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 "test/test_main_lib.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
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);
|
|
}
|