From aa0b4a2139301dc09d8d241b696658a294e40226 Mon Sep 17 00:00:00 2001 From: Shu-yu Guo Date: Wed, 27 Oct 2021 10:40:57 -0700 Subject: [PATCH] [test] Don't flush code for another flaky optimization test Bug: v8:12329 Change-Id: I51c38d70537889b7534fb7e6b4066e6ab440234a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3248163 Auto-Submit: Shu-yu Guo Commit-Queue: Adam Klein Reviewed-by: Adam Klein Cr-Commit-Position: refs/heads/main@{#77582} --- test/mjsunit/regress-1120905.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/mjsunit/regress-1120905.js b/test/mjsunit/regress-1120905.js index 63f4d04be6..ce8c315072 100644 --- a/test/mjsunit/regress-1120905.js +++ b/test/mjsunit/regress-1120905.js @@ -4,6 +4,10 @@ // Flags: --allow-natives-syntax +// This test does not work well if we flush the feedback vector, which causes +// deoptimization. +// Flags: --no-stress-flush-code --no-flush-bytecode + function O() {} O.prototype.f = f; O.prototype.g = g;