summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-31 09:55:28 +0000
committerpam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-31 09:55:28 +0000
commitc7468b0111a7c5dc792e9c397bd5eaf4994b68d0 (patch)
treeb6685563c860a96d48cd453ae7ef9d2344eb560c
parent005a052aa594e6f65a0a3279eed7701e51f343ec (diff)
downloadchromium_src-c7468b0111a7c5dc792e9c397bd5eaf4994b68d0.zip
chromium_src-c7468b0111a7c5dc792e9c397bd5eaf4994b68d0.tar.gz
chromium_src-c7468b0111a7c5dc792e9c397bd5eaf4994b68d0.tar.bz2
Add test name to OOP timeout log message so the log parser knows which one timed out.
BUG=34764 TEST=buildbot waterfall reports don't show "did not complete" when test times out Review URL: http://codereview.chromium.org/2342002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48591 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/test/test_launcher/out_of_proc_test_runner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/test_launcher/out_of_proc_test_runner.cc b/chrome/test/test_launcher/out_of_proc_test_runner.cc
index b5e53570..cc522da 100644
--- a/chrome/test/test_launcher/out_of_proc_test_runner.cc
+++ b/chrome/test/test_launcher/out_of_proc_test_runner.cc
@@ -77,7 +77,7 @@ class OutOfProcTestRunner : public tests::TestRunner {
if (!base::WaitForExitCodeWithTimeout(process_handle, &exit_code,
test_terminate_timeout_ms)) {
LOG(ERROR) << "Test timeout (" << test_terminate_timeout_ms
- << " ms) exceeded!";
+ << " ms) exceeded for " << test_name;
exit_code = -1; // Set a non-zero exit code to signal a failure.