blob: a708e447edee0d2353409533ee8421d592a6c529 [file] [log] [blame]
Paul Stewart75897df2011-04-27 09:05:53 -07001// Copyright (c) 2011 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#include <gtest/gtest.h>
6//#include <base/command_line.h>
7#include "shill/shill_logging.h"
8
9int main(int argc, char** argv) {
10 ::testing::InitGoogleTest(&argc, argv);
11 google::InitGoogleLogging(argv[0]);
12 google::LogToStderr();
13 shill::Log::Enable(SHILL_LOG_ALL);
14 return RUN_ALL_TESTS();
15}