Files
platform-external-webrtc/webrtc/test/run_test.h
mflodman@webrtc.org eae7924836 Adding back platform specific renderer to video loopback test.
BUG=3039
TEST=locally on Mac and Win, video_loopback test
R=pbos@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/10689004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6339 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-06-05 09:32:51 +00:00

23 lines
694 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.
*/
#ifndef WEBRTC_TEST_RUN_TEST_H
#define WEBRTC_TEST_RUN_TEST_H
namespace webrtc {
namespace test {
// Running a test function on a separate thread, if required by the OS.
void RunTest(void(*test)());
} // namespace test
} // namespace webrtc
#endif // WEBRTC_TEST_RUN_TEST_H