1848b8605Smrg// Copyright 2006, Google Inc.
2848b8605Smrg// All rights reserved.
3848b8605Smrg//
4848b8605Smrg// Redistribution and use in source and binary forms, with or without
5848b8605Smrg// modification, are permitted provided that the following conditions are
6848b8605Smrg// met:
7848b8605Smrg//
8848b8605Smrg//     * Redistributions of source code must retain the above copyright
9848b8605Smrg// notice, this list of conditions and the following disclaimer.
10848b8605Smrg//     * Redistributions in binary form must reproduce the above
11848b8605Smrg// copyright notice, this list of conditions and the following disclaimer
12848b8605Smrg// in the documentation and/or other materials provided with the
13848b8605Smrg// distribution.
14848b8605Smrg//     * Neither the name of Google Inc. nor the names of its
15848b8605Smrg// contributors may be used to endorse or promote products derived from
16848b8605Smrg// this software without specific prior written permission.
17848b8605Smrg//
18848b8605Smrg// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19848b8605Smrg// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20848b8605Smrg// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21848b8605Smrg// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22848b8605Smrg// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23848b8605Smrg// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24848b8605Smrg// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25848b8605Smrg// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26848b8605Smrg// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27848b8605Smrg// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28848b8605Smrg// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29848b8605Smrg
30848b8605Smrg#include <stdio.h>
31848b8605Smrg
32848b8605Smrg#include "gtest/gtest.h"
33848b8605Smrg
34848b8605SmrgGTEST_API_ int main(int argc, char **argv) {
35848b8605Smrg  printf("Running main() from gtest_main.cc\n");
36848b8605Smrg  testing::InitGoogleTest(&argc, argv);
37848b8605Smrg  return RUN_ALL_TESTS();
38848b8605Smrg}
39