summaryrefslogtreecommitdiff
path: root/test/sequential/test-child-process-execsync.js
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2017-12-31 17:39:30 +0100
committerTobias Nießen <tniessen@tnie.de>2018-01-03 18:22:48 +0100
commit8951fcff2badadd23463d78a113bea8a7de6fdd4 (patch)
treea2469f6b1ca19ccceede63883a8bd1f9c1112a3c /test/sequential/test-child-process-execsync.js
parentce22d6f9178507c7a41b04ac4097b9ea902049e3 (diff)
downloadandroid-node-v8-8951fcff2badadd23463d78a113bea8a7de6fdd4.tar.gz
android-node-v8-8951fcff2badadd23463d78a113bea8a7de6fdd4.tar.bz2
android-node-v8-8951fcff2badadd23463d78a113bea8a7de6fdd4.zip
test: update references to archived repository
PR-URL: https://github.com/nodejs/node/pull/17924 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'test/sequential/test-child-process-execsync.js')
-rw-r--r--test/sequential/test-child-process-execsync.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/sequential/test-child-process-execsync.js b/test/sequential/test-child-process-execsync.js
index 8b360f4f21..da80e80bce 100644
--- a/test/sequential/test-child-process-execsync.js
+++ b/test/sequential/test-child-process-execsync.js
@@ -93,7 +93,8 @@ ret = execFileSync(process.execPath, args, { encoding: 'utf8' });
assert.strictEqual(ret, `${msg}\n`);
-// Verify that the cwd option works - GH #7824
+// Verify that the cwd option works.
+// See https://github.com/nodejs/node-v0.x-archive/issues/7824.
{
const cwd = common.rootDir;
const cmd = common.isWindows ? 'echo %cd%' : 'pwd';
@@ -102,7 +103,8 @@ assert.strictEqual(ret, `${msg}\n`);
assert.strictEqual(response.toString().trim(), cwd);
}
-// Verify that stderr is not accessed when stdio = 'ignore' - GH #7966
+// Verify that stderr is not accessed when stdio = 'ignore'.
+// See https://github.com/nodejs/node-v0.x-archive/issues/7966.
{
assert.throws(function() {
execSync('exit -1', { stdio: 'ignore' });