summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNikolaos Papaspyrou <nikolaos@chromium.org>2022-02-24 19:19:35 +0100
committerDanielle Adams <adamzdanielle@gmail.com>2022-04-23 22:47:08 -0400
commit33b11a3548fcf54b7950eacb6b947401e5be44b3 (patch)
tree18dd696f7e0a71646e0706d6a762818c57aef727 /test
parent5322c732415fe0cbba0bd131cd68957fa12ca85a (diff)
downloadnode-new-33b11a3548fcf54b7950eacb6b947401e5be44b3.tar.gz
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 b9f9b70a61..8e836561ff 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 5d06124d68..e5fc8b6c72 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;
}));