Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNikolaos Papaspyrou <nikolaos@chromium.org>2022-02-24 21:19:35 +0300
committerMichaël Zasso <targos@protonmail.com>2022-03-01 14:41:32 +0300
commit3ba41246d24b73d505b51fe1a04c328e977a1bee (patch)
treed461f43d30f070c31e08b64f0a96c88e52e5a7cd /test
parentce1c53665e5bca0efec8d09513ed276752cc31ac (diff)
test: update V8 trace events test expectations
The event "V8.GCScavenger" is soon to be deprecated. Most of V8 trace events are either behind flags and disabled by default, or are emitted infrequently. Instead of replacing "V8.GCScavenger" with some other random event, this patch updates the tests to check that there is some event in the category "v8" whose name starts with "V8.". PR-URL: https://github.com/nodejs/node/pull/42120 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-trace-events-all.js2
-rw-r--r--test/parallel/test-trace-events-v8.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-trace-events-all.js b/test/parallel/test-trace-events-all.js
index b9f9b70a61b..8e836561ff7 100644
--- a/test/parallel/test-trace-events-all.js
+++ b/test/parallel/test-trace-events-all.js
@@ -27,7 +27,7 @@ proc.once('exit', common.mustCall(() => {
return false;
if (trace.cat !== 'v8')
return false;
- if (trace.name !== 'V8.GCScavenger')
+ if (!trace.name.startsWith('V8.'))
return false;
return true;
}));
diff --git a/test/parallel/test-trace-events-v8.js b/test/parallel/test-trace-events-v8.js
index 5d06124d687..e5fc8b6c726 100644
--- a/test/parallel/test-trace-events-v8.js
+++ b/test/parallel/test-trace-events-v8.js
@@ -29,7 +29,7 @@ proc.once('exit', common.mustCall(() => {
return false;
if (trace.cat !== 'v8')
return false;
- if (trace.name !== 'V8.GCScavenger')
+ if (!trace.name.startsWith('V8.'))
return false;
return true;
}));