testrunner.cc revision c98a7edf648aad88b3f66df3b5a7d43d6a6d7fa9
1// Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// based on pam_google_testrunner.cc
6
7#include <glib.h>
8#include <gtest/gtest.h>
9
10#include "update_engine/subprocess.h"
11
12int main(int argc, char **argv) {
13  g_thread_init(NULL);
14  chromeos_update_engine::Subprocess::Init();
15  ::testing::InitGoogleTest(&argc, argv);
16  return RUN_ALL_TESTS();
17}
18