Skip to content

Commit daa0940

Browse files
BridgeARMylesBorins
authored andcommitted
test: fix test-cli-node-options.js on mips
The performance jit logger is not implemented on mips. PR-URL: #20377 Reviewed-By: Richard Lau <[email protected]>
1 parent f6f69aa commit daa0940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-cli-node-options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (!common.isWindows) {
3232
expect('--perf-basic-prof', 'B\n');
3333
}
3434

35-
if (common.isLinux && ['arm', 'x64', 'mips'].includes(process.arch)) {
35+
if (common.isLinux && ['arm', 'x64'].includes(process.arch)) {
3636
// PerfJitLogger is only implemented in Linux.
3737
expect('--perf-prof', 'B\n');
3838
}

0 commit comments

Comments
 (0)