1167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// Copyright 2006, Google Inc.
2167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// All rights reserved.
3167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org//
4167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// Redistribution and use in source and binary forms, with or without
5167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// modification, are permitted provided that the following conditions are
6167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// met:
7167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org//
8167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org//     * Redistributions of source code must retain the above copyright
9167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// notice, this list of conditions and the following disclaimer.
10167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org//     * Redistributions in binary form must reproduce the above
11167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// copyright notice, this list of conditions and the following disclaimer
12167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// in the documentation and/or other materials provided with the
13167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// distribution.
14167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org//     * Neither the name of Google Inc. nor the names of its
15167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// contributors may be used to endorse or promote products derived from
16167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// this software without specific prior written permission.
17167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org//
18167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org
300d106b34dc08439a7c6887d1316a3e1a35f8f0cajohannkoenig@chromium.org#include <stdio.h>
31167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org
32167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org#include "gtest/gtest.h"
33167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org
34167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.orgGTEST_API_ int main(int argc, char **argv) {
350d106b34dc08439a7c6887d1316a3e1a35f8f0cajohannkoenig@chromium.org  printf("Running main() from gtest_main.cc\n");
36167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org  testing::InitGoogleTest(&argc, argv);
37167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org  return RUN_ALL_TESTS();
38167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org}
39