test: fix test-cli-node-options.js on mips

The performance jit logger is not implemented on mips.

PR-URL: https://github.com/nodejs/node/pull/20377
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
This commit is contained in:
Ruben Bridgewater 2018-04-28 02:27:53 +02:00
parent df2d73d410
commit 8444bba0af
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

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