1a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org/*
2a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *
4a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  Use of this source code is governed by a BSD-style license
5a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  that can be found in the LICENSE file in the root of the source
6a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  tree. An additional intellectual property rights grant can be found
7a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  in the file PATENTS.  All contributing project authors may
8a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  be found in the AUTHORS file in the root of the source tree.
9a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org */
1059a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org#ifndef WEBRTC_TEST_RUN_TEST_H
1159a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org#define WEBRTC_TEST_RUN_TEST_H
12a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org
13a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.orgnamespace webrtc {
14a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.orgnamespace test {
15a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org
1659a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org// Running a test function on a separate thread, if required by the OS.
1759a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.orgvoid RunTest(void(*test)());
18a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org
19a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org}  // namespace test
20a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org}  // namespace webrtc
2159a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org
2259a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org#endif  // WEBRTC_TEST_RUN_TEST_H
23