summaryrefslogtreecommitdiff
path: root/test/sequential/test-next-tick-error-spin.js
diff options
context:
space:
mode:
authorRod Vagg <rod@vagg.org>2015-04-29 10:55:55 +1000
committerRod Vagg <rod@vagg.org>2015-04-29 19:28:11 +1000
commitf9b226c1c1e5bfbf355f9fabe03e50333676cc05 (patch)
tree91d4ac33f804bfb2afa041c1d99779cf21e935c5 /test/sequential/test-next-tick-error-spin.js
parentf9c681cf627caf89b5c7eaacf154fdefb747c7e0 (diff)
downloadandroid-node-v8-f9b226c1c1e5bfbf355f9fabe03e50333676cc05.tar.gz
android-node-v8-f9b226c1c1e5bfbf355f9fabe03e50333676cc05.tar.bz2
android-node-v8-f9b226c1c1e5bfbf355f9fabe03e50333676cc05.zip
test: extend timeouts for ARMv6
Based on tests running on original Raspberry Pi PR-URL: https://github.com/iojs/io.js/pull/1554 Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'test/sequential/test-next-tick-error-spin.js')
-rw-r--r--test/sequential/test-next-tick-error-spin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sequential/test-next-tick-error-spin.js b/test/sequential/test-next-tick-error-spin.js
index c8011115c0..a150ea7a58 100644
--- a/test/sequential/test-next-tick-error-spin.js
+++ b/test/sequential/test-next-tick-error-spin.js
@@ -8,7 +8,7 @@ if (process.argv[2] !== 'child') {
});
var timer = setTimeout(function() {
throw new Error('child is hung');
- }, 3000);
+ }, common.platformTimeout(3000));
child.on('exit', function(code) {
console.error('ok');
assert(!code);