Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index f7e77ca1543a1ab67c15c4fe4b90d58cf5737a57..19f4ed874cd840cfa10afda9248718c8234f2720 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", |