mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
688 B
23 lines
688 B
'use strict';
|
|
const common = require('../common');
|
|
const os = require('os');
|
|
if (!(common.hasIntl && common.hasSmallICU))
|
|
common.skip('missing Intl');
|
|
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
|
|
const expected =
|
|
'could not initialize ICU (check NODE_ICU_DATA or ' +
|
|
`--icu-data-dir parameters)${os.EOL}`;
|
|
|
|
{
|
|
const child = spawnSync(process.execPath, ['--icu-data-dir=/', '-e', '0']);
|
|
assert(child.stderr.toString().includes(expected));
|
|
}
|
|
|
|
{
|
|
const env = Object.assign({}, process.env, { NODE_ICU_DATA: '/' });
|
|
const child = spawnSync(process.execPath, ['-e', '0'], { env });
|
|
assert(child.stderr.toString().includes(expected));
|
|
}
|
|
|