Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1038)

Side by Side Diff: disks_testrunner.cc

Issue 6838011: adds a signal, fixes a crash, adds syslogging, and marshals disks to d-bus (Closed) Base URL: ssh://gitrw.chromium.org:9222/cros-disks.git@master
Patch Set: reverts a commom.mk change Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by the GPL v2 license that can
3 // be found in the LICENSE file.
4
5 #include <gmock/gmock.h>
6 #include <gtest/gtest.h>
7
8 int main(int argc, char **argv) {
9 ::testing::InitGoogleTest(&argc, argv);
10 ::testing::GTEST_FLAG(throw_on_failure) = true;
11 ::testing::InitGoogleMock(&argc, argv);
12 return RUN_ALL_TESTS();
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698