Skip to content

Commit

Permalink
[squash] skip test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax committed Oct 21, 2016
1 parent c0e5fa6 commit de7c161
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/parallel/test-process-execpath.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ const fs = require('fs');

assert.strictEqual(process.execPath, fs.realpathSync(process.execPath));

if (common.isWindows) {
common.skip('symlinks are weird on windows');
return;
}

if (process.argv[2] === 'child') {
// The console.log() output is part of the test here.
console.log(process.execPath);
Expand Down

0 comments on commit de7c161

Please sign in to comment.