mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
bf6ce47259
Move tmpdir functionality to its own module (common/tmpdir). PR-URL: https://github.com/nodejs/node/pull/17856 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
28 lines
892 B
JavaScript
28 lines
892 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (common.isWindows)
|
|
common.skip('symlinks are weird on windows');
|
|
|
|
const assert = require('assert');
|
|
const child_process = require('child_process');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
assert.strictEqual(process.execPath, fs.realpathSync(process.execPath));
|
|
|
|
if (process.argv[2] === 'child') {
|
|
// The console.log() output is part of the test here.
|
|
console.log(process.execPath);
|
|
} else {
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
const symlinkedNode = path.join(tmpdir.path, 'symlinked-node');
|
|
fs.symlinkSync(process.execPath, symlinkedNode);
|
|
|
|
const proc = child_process.spawnSync(symlinkedNode, [__filename, 'child']);
|
|
assert.strictEqual(proc.stderr.toString(), '');
|
|
assert.strictEqual(proc.stdout.toString(), `${process.execPath}\n`);
|
|
assert.strictEqual(proc.status, 0);
|
|
}
|