This commit introduces platform-specific test timeouts for the ARM architectures. ARMv6 is notoriously slow so gets very large timeouts on both the timeout value for each test, as well as certain problematic individual tests. ARMv7 and ARMv8 also get slightly increased headroom. PR-URL: https://github.com/iojs/io.js/pull/1366 Fixes: https://github.com/iojs/io.js/issues/1343 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
23 lines
609 B
JavaScript
23 lines
609 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var spawn = require('child_process').spawn;
|
|
|
|
// spawn a node child process in "interactive" mode (force the repl)
|
|
var cp = spawn(process.execPath, ['-i']);
|
|
var gotToEnd = false;
|
|
var timeoutId = setTimeout(function() {
|
|
throw new Error('timeout!');
|
|
}, common.platformTimeout(1000)); // give node + the repl 1 second to boot up
|
|
|
|
cp.stdout.setEncoding('utf8');
|
|
|
|
cp.stdout.once('data', function(b) {
|
|
clearTimeout(timeoutId);
|
|
assert.equal(b, '> ');
|
|
gotToEnd = true;
|
|
cp.kill();
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(gotToEnd);
|
|
});
|