From 092a448ad0ff935bfe2c365216fa40b84a4781e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sat, 8 Nov 2025 09:05:01 +0100 Subject: [PATCH] test: fix test-linux-perf-logger for V8 14.3 Refs: https://github.com/v8/v8/commit/e2e6dd82794659bd8a386ea43f437e0ff8b5c536 PR-URL: https://github.com/nodejs/node/pull/60488 Reviewed-By: Colin Ihrig Reviewed-By: Chengzhong Wu Reviewed-By: Antoine du Hamel Reviewed-By: Richard Lau --- 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 3787c09526..563ee1d99e 100644 --- a/test/v8-updates/test-linux-perf-logger.js +++ b/test/v8-updates/test-linux-perf-logger.js @@ -46,7 +46,7 @@ const testCases = [ matches: [ 'JS:~functionOne .+/linux-perf-logger.js', 'JS:~functionTwo .+/linux-perf-logger.js', - String.raw`RegExp\.> src: 'test-regex' flags: 'gi'`, + String.raw`RegExp\.< src: 'test-regex' flags: 'gi'`, ], noMatches: [ String.raw`JS:\*'functionOne`, @@ -57,7 +57,7 @@ const testCases = [ title: '--perf-basic-prof compiled', nodeFlags: ['--allow-natives-syntax', '--perf-basic-prof', '--no-turbo-inlining'], matches: [ - String.raw`RegExp\.> src: 'test-regex' flags: 'gi'`, + String.raw`RegExp\.< src: 'test-regex' flags: 'gi'`, 'JS:~functionOne .+/linux-perf-logger.js', 'JS:~functionTwo .+/linux-perf-logger.js', String.raw`JS:\*'functionOne .+/linux-perf-logger.js`,