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

Unified Diff: dbus/test_server.cc

Issue 10540032: dbus: Add test_server.cc used for manual testing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dbus/dbus.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/test_server.cc
diff --git a/dbus/test_server.cc b/dbus/test_server.cc
new file mode 100644
index 0000000000000000000000000000000000000000..827f62d080af52701137721205b8cdf4620f5646
--- /dev/null
+++ b/dbus/test_server.cc
@@ -0,0 +1,28 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/at_exit.h"
+#include "base/command_line.h"
+#include "base/test/test_timeouts.h"
+#include "dbus/bus.h"
+#include "dbus/test_service.h"
+
+int main(int argc, char** argv) {
+ base::AtExitManager exit_manager;
+ CommandLine::Init(argc, argv);
+ TestTimeouts::Initialize();
+
+ base::Thread* dbus_thread = new base::Thread("D-Bus Thread");
+ base::Thread::Options thread_options;
+ thread_options.message_loop_type = MessageLoop::TYPE_IO;
+ CHECK(dbus_thread->StartWithOptions(thread_options));
+
+ dbus::TestService::Options options;
+ options.dbus_thread_message_loop_proxy = dbus_thread->message_loop_proxy();
+ dbus::TestService* test_service = new dbus::TestService(options);
+ CHECK(test_service->StartService());
+ CHECK(test_service->WaitUntilServiceIsStarted());
+ CHECK(test_service->HasDBusThread());
+ base::PlatformThread::Join(dbus_thread->thread_handle());
+}
« no previous file with comments | « dbus/dbus.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698