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

Unified Diff: content/test/browser_test_utils.cc

Issue 10831204: Fix for number of ChromeOS browser_tests that were failing in BVTs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « chrome/browser/ui/webui/options2/browser_options_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/browser_test_utils.cc
diff --git a/content/test/browser_test_utils.cc b/content/test/browser_test_utils.cc
index c5656b375a67223e00ff6202ae491bce32b4f284..e4b5b24066d9b597edede7ff50fc6bfbe8b199f7 100644
--- a/content/test/browser_test_utils.cc
+++ b/content/test/browser_test_utils.cc
@@ -413,7 +413,8 @@ bool TestWebSocketServer::Start(const FilePath& root_directory) {
// Launch a new WebSocket server process.
if (!base::LaunchProcess(*cmd_line.get(), options, &process_handle)) {
- LOG(ERROR) << "Unable to launch websocket server.";
+ LOG(ERROR) << "Unable to launch websocket server:\n"
+ << cmd_line.get()->GetCommandLineString();
return false;
}
#if defined(OS_POSIX)
@@ -429,7 +430,8 @@ bool TestWebSocketServer::Start(const FilePath& root_directory) {
if (!wait_success || exit_code != 0) {
LOG(ERROR) << "Failed to run new-run-webkit-websocketserver: "
<< "wait_success = " << wait_success << ", "
- << "exit_code = " << exit_code;
+ << "exit_code = " << exit_code << ", "
+ << "command_line = " << cmd_line.get()->GetCommandLineString();
return false;
}
« no previous file with comments | « chrome/browser/ui/webui/options2/browser_options_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698