blob: 6166bffc0bd68cc1e4109633c4627f581beeb1c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
'use strict';
require('../common');
const assert = require('assert');
const execFile = require('child_process').execFile;
if (process.argv[2] === 'child') {
setImmediate(function() {
require('fs').readFileSync(__filename);
process.exit();
});
} else {
(function runTest(flags) {
const execArgv = [flags.pop()];
let args = [__filename, 'child'];
let cntr = 0;
args = execArgv.concat(args);
if (!args[0]) args.shift();
execFile(process.execPath, args, function(err, stdout, stderr) {
assert.equal(err, null);
assert.equal(stdout, '');
if (/WARNING[\s\S]*fs\.readFileSync/.test(stderr))
cntr++;
if (args[0] === '--trace-sync-io') {
assert.equal(cntr, 1);
} else if (args[0] === __filename) {
assert.equal(cntr, 0);
} else {
throw new Error('UNREACHABLE');
}
if (flags.length > 0)
setImmediate(runTest, flags);
});
}(['--trace-sync-io', '']));
}
|