From 515b007faedf529861b22823f8a722eebed837fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 29 Dec 2023 10:52:20 +0100 Subject: [PATCH] test: replace always-opt flag with alway-turbofan Refs: https://github.com/v8/v8/commit/e3e8ea5d657b886201d4e1982589a72f77909ba4 PR-URL: https://github.com/nodejs/node/pull/50115 Reviewed-By: Rafael Gonzaga Reviewed-By: Michael Dawson --- test/v8-updates/test-linux-perf-logger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/v8-updates/test-linux-perf-logger.js b/test/v8-updates/test-linux-perf-logger.js index 8b00d332585121..ffea7257bbeae3 100644 --- a/test/v8-updates/test-linux-perf-logger.js +++ b/test/v8-updates/test-linux-perf-logger.js @@ -48,7 +48,7 @@ const testCases = [ }, { title: '--perf-basic-prof compiled', - nodeFlags: ['--perf-basic-prof', '--no-turbo-inlining', '--always-opt'], + nodeFlags: ['--perf-basic-prof', '--no-turbo-inlining', '--always-turbofan'], matches: [ 'test-regex', '~functionOne .+/linux-perf-logger.js', @@ -66,7 +66,7 @@ const testCases = [ }, { title: '--perf-basic-prof-only-functions compiled', - nodeFlags: ['--perf-basic-prof-only-functions', '--no-turbo-inlining', '--always-opt'], + nodeFlags: ['--perf-basic-prof-only-functions', '--no-turbo-inlining', '--always-turbofan'], matches: [ '~functionOne .+/linux-perf-logger.js', '~functionTwo .+/linux-perf-logger.js',