summaryrefslogtreecommitdiffstats
path: root/dbus
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2015-12-21 14:07:13 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-21 22:08:06 +0000
commitc4ce3bff96c0ed58d549627c2c2071f8971c7398 (patch)
tree0a2e11b8a377a180550cf93bb9f47e3b60a33f61 /dbus
parentae13c65b3c776429bcc48968855112607db595a0 (diff)
downloadchromium_src-c4ce3bff96c0ed58d549627c2c2071f8971c7398.zip
chromium_src-c4ce3bff96c0ed58d549627c2c2071f8971c7398.tar.gz
chromium_src-c4ce3bff96c0ed58d549627c2c2071f8971c7398.tar.bz2
Run dbus_unittests serially.
Otherwise, they will conflict with each other over the ownership of the test DBus service. BUG=571274 TBR=hashimoto@chromium.org Review URL: https://codereview.chromium.org/1547503002 Cr-Commit-Position: refs/heads/master@{#366466}
Diffstat (limited to 'dbus')
-rw-r--r--dbus/run_all_unittests.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/run_all_unittests.cc b/dbus/run_all_unittests.cc
index dac4a3c..a758d54 100644
--- a/dbus/run_all_unittests.cc
+++ b/dbus/run_all_unittests.cc
@@ -8,7 +8,7 @@
int main(int argc, char** argv) {
base::TestSuite test_suite(argc, argv);
- return base::LaunchUnitTests(
+ return base::LaunchUnitTestsSerially(
argc, argv,
base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
}