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>
This commit is contained in:
Yagiz Nizipli 2022-11-26 16:33:00 -05:00 committed by Node.js GitHub Bot
parent d6dae7420e
commit fb91ee4f26

View File

@ -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);
});
}