From c7468b0111a7c5dc792e9c397bd5eaf4994b68d0 Mon Sep 17 00:00:00 2001 From: "pam@chromium.org" Date: Mon, 31 May 2010 09:55:28 +0000 Subject: 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 --- chrome/test/test_launcher/out_of_proc_test_runner.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.1