summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorrsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-28 23:17:26 +0000
committerrsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-28 23:17:26 +0000
commit8cbb66645a9d6b554f443fda9e8159646add61b4 (patch)
tree3f8dba4dfa9240d72477c846bd0e3b896a003e8b /chrome/test
parentd38e0b3676ce70b971f4fd4e4e202ef5780f9304 (diff)
downloadchromium_src-8cbb66645a9d6b554f443fda9e8159646add61b4.zip
chromium_src-8cbb66645a9d6b554f443fda9e8159646add61b4.tar.gz
chromium_src-8cbb66645a9d6b554f443fda9e8159646add61b4.tar.bz2
Enable verbose logging for sync integration tests.
The chromium buildbots are showing an increasing number of browser crashes while running the sync integration tests. This patch enables verbose logging, in order to help identify the root cause of these crashes. BUG=74467 TEST=sync_integration_tests Review URL: http://codereview.chromium.org/6588068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76303 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/live_sync/live_sync_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/live_sync/live_sync_test.cc b/chrome/test/live_sync/live_sync_test.cc
index 430a514..6331802 100644
--- a/chrome/test/live_sync/live_sync_test.cc
+++ b/chrome/test/live_sync/live_sync_test.cc
@@ -8,6 +8,7 @@
#include "base/basictypes.h"
#include "base/command_line.h"
+#include "base/logging.h"
#include "base/message_loop.h"
#include "base/path_service.h"
#include "base/string_util.h"
@@ -108,6 +109,9 @@ LiveSyncTest::LiveSyncTest(TestType test_type)
test_server_handle_(base::kNullProcessHandle) {
InProcessBrowserTest::set_show_window(true);
+ // TODO(rsimha): Remove this after investigating failing sync tests.
+ logging::SetMinLogLevel(logging::LOG_VERBOSE);
+
switch (test_type_) {
case SINGLE_CLIENT: {
num_clients_ = 1;