| Index: disks_testrunner.cc
|
| diff --git a/disks_testrunner.cc b/disks_testrunner.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e2b14ac50377f90449aa087e8b6fcfc1f8bff679
|
| --- /dev/null
|
| +++ b/disks_testrunner.cc
|
| @@ -0,0 +1,13 @@
|
| +// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
| +// Use of this source code is governed by the GPL v2 license that can
|
| +// be found in the LICENSE file.
|
| +
|
| +#include <gmock/gmock.h>
|
| +#include <gtest/gtest.h>
|
| +
|
| +int main(int argc, char **argv) {
|
| + ::testing::InitGoogleTest(&argc, argv);
|
| + ::testing::GTEST_FLAG(throw_on_failure) = true;
|
| + ::testing::InitGoogleMock(&argc, argv);
|
| + return RUN_ALL_TESTS();
|
| +}
|
|
|