11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst spawn = require('child_process').spawn; 51cb0ef41Sopenharmony_ciconst expectedError = common.isWindows ? /\bENOTSUP\b/ : /\bEPERM\b/; 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciif (common.isIBMi) 81cb0ef41Sopenharmony_ci common.skip('IBMi has a different behavior'); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciif (common.isWindows || process.getuid() !== 0) { 111cb0ef41Sopenharmony_ci assert.throws(() => { 121cb0ef41Sopenharmony_ci spawn('echo', ['fhqwhgads'], { uid: 0 }); 131cb0ef41Sopenharmony_ci }, expectedError); 141cb0ef41Sopenharmony_ci} 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ciif (common.isWindows || !process.getgroups().some((gid) => gid === 0)) { 171cb0ef41Sopenharmony_ci assert.throws(() => { 181cb0ef41Sopenharmony_ci spawn('echo', ['fhqwhgads'], { gid: 0 }); 191cb0ef41Sopenharmony_ci }, expectedError); 201cb0ef41Sopenharmony_ci} 21