Skip to content

Commit

Permalink
test: use common.skip for tap skip output
Browse files Browse the repository at this point in the history
These were missed from 52bae22

PR-URL: #8841
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
  • Loading branch information
llkats authored and jasnell committed Oct 6, 2016
1 parent 2ecd3b5 commit aa8324c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/parallel/test-fs-readfile-pipe-large.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var path = require('path');
// simulate `cat readfile.js | node readfile.js`

if (common.isWindows || common.isAix) {
console.log(`1..0 # Skipped: No /dev/stdin on ${process.platform}.`);
common.skip(`No /dev/stdin on ${process.platform}.`);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-fs-readfile-pipe.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var assert = require('assert');
// simulate `cat readfile.js | node readfile.js`

if (common.isWindows || common.isAix) {
console.log(`1..0 # Skipped: No /dev/stdin on ${process.platform}.`);
common.skip(`No /dev/stdin on ${process.platform}.`);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-fs-readfilesync-pipe-large.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var path = require('path');
// simulate `cat readfile.js | node readfile.js`

if (common.isWindows || common.isAix) {
console.log(`1..0 # Skipped: No /dev/stdin on ${process.platform}.`);
common.skip(`No /dev/stdin on ${process.platform}.`);
return;
}

Expand Down

0 comments on commit aa8324c

Please sign in to comment.