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.
20 lines
529 B
20 lines
529 B
8 years ago
|
'use strict';
|
||
|
require('../common');
|
||
|
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));
|
||
|
}
|