mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 23:06:47 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
28 lines
710 B
JavaScript
28 lines
710 B
JavaScript
'use strict';
|
|
var assert = require('assert');
|
|
var child_process = require('child_process');
|
|
var spawn = child_process.spawn;
|
|
var fork = child_process.fork;
|
|
|
|
if (process.argv[2] === 'fork') {
|
|
process.stdout.write(JSON.stringify(process.execArgv), function() {
|
|
process.exit();
|
|
});
|
|
} else if (process.argv[2] === 'child') {
|
|
fork(__filename, ['fork']);
|
|
} else {
|
|
var execArgv = ['--harmony_proxies', '--stack-size=256'];
|
|
var args = [__filename, 'child', 'arg0'];
|
|
|
|
var child = spawn(process.execPath, execArgv.concat(args));
|
|
var out = '';
|
|
|
|
child.stdout.on('data', function(chunk) {
|
|
out += chunk;
|
|
});
|
|
|
|
child.on('exit', function() {
|
|
assert.deepEqual(JSON.parse(out), execArgv);
|
|
});
|
|
}
|