blob: 0a74480d4f39d73035b36c95564d3cc6c5884643 [file] [log] [blame]
rspangler@google.com49fdf182009-10-10 00:57:34 +00001// 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
adlr@google.comc98a7ed2009-12-04 18:54:03 +00007#include <glib.h>
rspangler@google.com49fdf182009-10-10 00:57:34 +00008#include <gtest/gtest.h>
9
adlr@google.comc98a7ed2009-12-04 18:54:03 +000010#include "update_engine/subprocess.h"
11
rspangler@google.com49fdf182009-10-10 00:57:34 +000012int main(int argc, char **argv) {
adlr@google.comc98a7ed2009-12-04 18:54:03 +000013 g_thread_init(NULL);
14 chromeos_update_engine::Subprocess::Init();
rspangler@google.com49fdf182009-10-10 00:57:34 +000015 ::testing::InitGoogleTest(&argc, argv);
16 return RUN_ALL_TESTS();
17}