Commit 906a69c4 authored by Victor Gomes's avatar Victor Gomes Committed by V8 LUCI CQ

[baseline] Disable CollectCPU when Concurrent SP

Bug: v8:12054
Change-Id: Ic121ef55ae7f8578aca3fc8303976f98959d2c8b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3289175
Commit-Queue: Victor Gomes <victorgomes@chromium.org>
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Auto-Submit: Victor Gomes <victorgomes@chromium.org>
Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
Cr-Commit-Position: refs/heads/main@{#77993}
parent 160a9f92
......@@ -750,6 +750,10 @@ static const char* cpu_profiler_test_source =
// 2 2 (program) [-1]
// 6 6 (garbage collector) [-1]
TEST(CollectCpuProfile) {
// Skip test if concurrent sparkplug is enabled. The test becomes flaky,
// since it requires a precise trace.
if (i::FLAG_concurrent_sparkplug) return;
i::FLAG_allow_natives_syntax = true;
LocalContext env;
v8::HandleScope scope(env->GetIsolate());
......@@ -779,6 +783,10 @@ TEST(CollectCpuProfile) {
}
TEST(CollectCpuProfileCallerLineNumbers) {
// Skip test if concurrent sparkplug is enabled. The test becomes flaky,
// since it requires a precise trace.
if (i::FLAG_concurrent_sparkplug) return;
i::FLAG_allow_natives_syntax = true;
LocalContext env;
v8::HandleScope scope(env->GetIsolate());
......
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