Commit a4626654 authored by Jakob Gruber's avatar Jakob Gruber Committed by V8 LUCI CQ

Disable --stress-concurrent-inlining in various tests

test-heap/NextCodeLinkIsWeak
test-heap/NextCodeLinkIsWeak2
test-heap/NextCodeLinkInCodeDataContainerIsCleared

These tests depends on deterministic compile job behavior.

Fixed: v8:12367
Change-Id: I47e748f18abf947a769e09df3814bd2a3443b11b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3297894
Auto-Submit: Jakob Gruber <jgruber@chromium.org>
Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
Commit-Queue: Igor Sheludko <ishell@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78043}
parent 6e978db8
......@@ -4346,6 +4346,7 @@ static int GetCodeChainLength(Code code) {
TEST(NextCodeLinkIsWeak) {
FLAG_always_opt = false;
FLAG_allow_natives_syntax = true;
FLAG_stress_concurrent_inlining = false; // Test needs deterministic timing.
CcTest::InitializeVM();
Isolate* isolate = CcTest::i_isolate();
v8::internal::Heap* heap = CcTest::heap();
......@@ -4376,6 +4377,7 @@ TEST(NextCodeLinkIsWeak) {
TEST(NextCodeLinkInCodeDataContainerIsCleared) {
FLAG_always_opt = false;
FLAG_allow_natives_syntax = true;
FLAG_stress_concurrent_inlining = false; // Test needs deterministic timing.
CcTest::InitializeVM();
Isolate* isolate = CcTest::i_isolate();
v8::internal::Heap* heap = CcTest::heap();
......@@ -4424,6 +4426,7 @@ static Handle<Code> DummyOptimizedCode(Isolate* isolate) {
TEST(NextCodeLinkIsWeak2) {
FLAG_allow_natives_syntax = true;
FLAG_stress_concurrent_inlining = false; // Test needs deterministic timing.
CcTest::InitializeVM();
Isolate* isolate = CcTest::i_isolate();
v8::internal::Heap* heap = CcTest::heap();
......
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