From f4588f070f2f20f7f9d430df14d2949a22e8ad71 Mon Sep 17 00:00:00 2001 From: Andreas Haas Date: Mon, 8 Aug 2022 15:49:01 +0200 Subject: [PATCH] [wasm] Add --no-wasm-lazy-compilation to stress Once lazy compilation lands we want to continue testing the eager compilation configuration. For that we add --no-wasm-lazy-compilation to the "stress" variant. Bug: v8:12852 Change-Id: I1777aaeb1c8cec0359128ed4b3d34a21aa3ce37e Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3810249 Reviewed-by: Clemens Backes Commit-Queue: Andreas Haas Cr-Commit-Position: refs/heads/main@{#82470} --- tools/testrunner/local/variants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testrunner/local/variants.py b/tools/testrunner/local/variants.py index 734726923a..d1dc10b666 100644 --- a/tools/testrunner/local/variants.py +++ b/tools/testrunner/local/variants.py @@ -32,7 +32,7 @@ ALL_VARIANT_FLAGS = { "slow_path": [["--force-slow-path"]], "stress": [[ "--stress-opt", "--no-liftoff", "--stress-lazy-source-positions", - "--no-wasm-generic-wrapper" + "--no-wasm-generic-wrapper", "--no-wasm-lazy-compilation" ]], "stress_concurrent_allocation": [["--stress-concurrent-allocation"]], "stress_concurrent_inlining": [["--stress-concurrent-inlining"]],