mirror of https://github.com/nodejs/node.git
test: make trace-gc-flag tests less strict
PR-URL: https://github.com/nodejs/node/pull/45579 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>pull/45647/head
parent
d6dae7420e
commit
fb91ee4f26
|
@ -19,15 +19,11 @@ const fixtures = require('../common/fixtures');
|
|||
const lines = splitByLine(output);
|
||||
|
||||
const scavengeRegex = /\bScavenge\b/;
|
||||
const expectedOutput = [
|
||||
scavengeRegex,
|
||||
scavengeRegex,
|
||||
scavengeRegex,
|
||||
scavengeRegex,
|
||||
/\bMark-Compact\b/,
|
||||
];
|
||||
const eofRegex = /\bMark-Compact\b/;
|
||||
|
||||
lines.forEach((line, index) => {
|
||||
assert.match(line, expectedOutput[index]);
|
||||
const expected = index !== lines.length - 1 ? scavengeRegex : eofRegex;
|
||||
assert.match(line, expected);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue