From c15ca44b0c15ecf24d09a828711c24c197287860 Mon Sep 17 00:00:00 2001 From: machenbach Date: Tue, 21 Apr 2015 01:17:19 -0700 Subject: [PATCH] [test-runner] Add dedicated test mode for tryserver. BUG= Review URL: https://codereview.chromium.org/1098883002 Cr-Commit-Position: refs/heads/master@{#27952} --- tools/run-tests.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tools/run-tests.py b/tools/run-tests.py index f7e77ca..19f4ed8 100755 --- a/tools/run-tests.py +++ b/tools/run-tests.py @@ -112,8 +112,18 @@ MODES = { "execution_mode": "release", "output_folder": "release", }, - # This mode requires v8 to be compiled with dchecks and slow dchecks. + # Normal trybot release configuration. There, dchecks are always on which + # implies debug is set. Hence, the status file needs to assume debug-like + # behavior/timeouts. "tryrelease": { + "flags": RELEASE_FLAGS, + "timeout_scalefactor": 1, + "status_mode": "debug", + "execution_mode": "release", + "output_folder": "release", + }, + # This mode requires v8 to be compiled with dchecks and slow dchecks. + "slowrelease": { "flags": RELEASE_FLAGS + ["--enable-slow-asserts"], "timeout_scalefactor": 2, "status_mode": "debug", -- 2.7.4