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.
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (!(common.hasIntl && common.hasSmallICU)) {
|
|
|
|
common.skip('missing Intl');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const assert = require('assert');
|
|
|
|
const { spawnSync } = require('child_process');
|
|
|
|
|
|
|
|
const expected =
|
|
|
|
'could not initialize ICU ' +
|
|
|
|
'(check NODE_ICU_DATA or --icu-data-dir parameters)';
|
|
|
|
|
|
|
|
{
|
|
|
|
const child = spawnSync(process.execPath, ['--icu-data-dir=/', '-e', '0']);
|
|
|
|
assert(child.stderr.toString().includes(expected));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const env = { NODE_ICU_DATA: '/' };
|
|
|
|
const child = spawnSync(process.execPath, ['-e', '0'], { env });
|
|
|
|
assert(child.stderr.toString().includes(expected));
|
|
|
|
}
|