node/test/sequential/test-regress-GH-3542.js
isaacs 3e1b1dd4a9 Remove excessive copyright/license boilerplate
The copyright and license notice is already in the LICENSE file.  There
is no justifiable reason to also require that it be included in every
file, since the individual files are not individually distributed except
as part of the entire package.
2015-01-12 15:30:28 -08:00

33 lines
No EOL
735 B
JavaScript

// This test is only relevant on Windows.
if (process.platform !== 'win32') {
return process.exit(0);
}
var common = require('../common.js'),
assert = require('assert'),
fs = require('fs'),
path = require('path'),
succeeded = 0;
function test(p) {
var result = fs.realpathSync(p);
assert.strictEqual(result, path.resolve(p));
fs.realpath(p, function(err, result) {
assert.ok(!err);
assert.strictEqual(result, path.resolve(p));
succeeded++;
});
}
test('//localhost/c$/windows/system32');
test('//localhost/c$/windows');
test('//localhost/c$/')
test('\\\\localhost\\c$')
test('c:\\');
test('c:');
test(process.env.windir);
process.on('exit', function() {
assert.strictEqual(succeeded, 7);
});