2017-01-03 13:16:48 -08:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-07-29 17:18:04 +05:30
|
|
|
const common = require('../common');
|
2016-10-21 15:49:35 -07:00
|
|
|
const assert = require('assert');
|
|
|
|
const exec = require('child_process').exec;
|
2010-08-05 06:06:46 +02:00
|
|
|
|
2017-01-08 13:19:00 +00:00
|
|
|
let pwdcommand, dir;
|
2011-08-01 17:40:46 -07:00
|
|
|
|
2015-07-29 17:18:04 +05:30
|
|
|
if (common.isWindows) {
|
2011-10-04 18:08:18 -04:00
|
|
|
pwdcommand = 'echo %cd%';
|
2011-08-01 17:40:46 -07:00
|
|
|
dir = 'c:\\windows';
|
|
|
|
} else {
|
2011-10-04 18:08:18 -04:00
|
|
|
pwdcommand = 'pwd';
|
2011-08-08 16:14:30 -07:00
|
|
|
dir = '/dev';
|
2011-08-01 17:40:46 -07:00
|
|
|
}
|
|
|
|
|
2020-09-06 22:27:07 +02:00
|
|
|
exec(pwdcommand, { cwd: dir }, common.mustSucceed((stdout, stderr) => {
|
2023-03-27 13:20:08 +02:00
|
|
|
assert(stdout.toLowerCase().startsWith(dir));
|
2016-07-15 15:43:24 -04:00
|
|
|
}));
|