Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: skip test-preload on AIX
  • Loading branch information
Fishrock123 committed May 12, 2016
commit e73b9dcf4ba1293559cf522f85b9e88e7bcc0534
4 changes: 2 additions & 2 deletions test/parallel/test-preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const path = require('path');
const childProcess = require('child_process');

// Refs: https://github.com/nodejs/node/pull/2253
if (common.isSunOS) {
console.log('1..0 # Skipped: unreliable on SunOS');
if (common.isSunOS || common.isAix) {
console.log('1..0 # Skipped: unreliable on SunOS & AIX');
return;
}

Expand Down