Skip to content

Commit

Permalink
test: fix test-cli-node-options.js on mips
Browse files Browse the repository at this point in the history
The performance jit logger is not implemented on mips.

PR-URL: #20377
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
  • Loading branch information
BridgeAR authored and MylesBorins committed May 9, 2018
1 parent 601f138 commit 578e054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-cli-node-options.js
Expand Up @@ -32,7 +32,7 @@ if (!common.isWindows) {
expect('--perf-basic-prof', 'B\n');
}

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

0 comments on commit 578e054

Please sign in to comment.