1 : /*
2 : * Copyright 2008 The Native Client Authors. All rights reserved.
3 : * Use of this source code is governed by a BSD-style license that can
4 : * be found in the LICENSE file.
5 : */
6 :
7 :
8 : // Testing NativeClient's service_runtime functionality
9 :
10 :
11 : #include "native_client/src/include/portability.h"
12 :
13 : #include "gtest/gtest.h"
14 :
15 : // TODO(gregoryd) - more tests
16 :
17 1 : int main(int argc, char **argv) {
18 1 : testing::InitGoogleTest(&argc, argv);
19 1 : return RUN_ALL_TESTS();
20 : }
|