Commit e3184756 authored by watk's avatar watk Committed by Commit bot

The android test launcher now silently waits for a debugger

There seems to be no good reason to use the non-silent WaitForDebugger(),
and the silent one is much easier to continue from in gdb, so now the
android native test launcher silently waits too.

BUG=643818

Review-Url: https://codereview.chromium.org/2306213002
Cr-Commit-Position: refs/heads/master@{#416373}
parent 8d16ceda
......@@ -125,7 +125,7 @@ static void RunTests(JNIEnv* env,
AndroidLog(ANDROID_LOG_VERBOSE,
"Native test waiting for GDB because flag %s was supplied",
switches::kWaitForDebugger);
base::debug::WaitForDebugger(24 * 60 * 60, false);
base::debug::WaitForDebugger(24 * 60 * 60, true);
}
base::FilePath test_data_dir(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment