mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

PR-URL: https://github.com/nodejs/node/pull/14162 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
18 lines
512 B
JavaScript
18 lines
512 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
const expectedError = common.isWindows ? /\bENOTSUP\b/ : /\bEPERM\b/;
|
|
|
|
if (common.isWindows || process.getuid() !== 0) {
|
|
assert.throws(() => {
|
|
spawn('echo', ['fhqwhgads'], { uid: 0 });
|
|
}, expectedError);
|
|
}
|
|
|
|
if (common.isWindows || !process.getgroups().some((gid) => gid === 0)) {
|
|
assert.throws(() => {
|
|
spawn('echo', ['fhqwhgads'], { gid: 0 });
|
|
}, expectedError);
|
|
}
|