summaryrefslogtreecommitdiff
path: root/test/parallel/test-dgram-udp4.js
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2015-12-22 12:43:44 -0500
committerBrian White <mscdex@mscdex.net>2015-12-22 15:05:11 -0500
commitd847a744051dc74ca4a595e3b0b04f78892cd4d0 (patch)
tree4c6fa5d183e364c34ec09b52195927141dfc971c /test/parallel/test-dgram-udp4.js
parent3213e5fe6e429980b6597057f718ce0216258d3e (diff)
downloadandroid-node-v8-d847a744051dc74ca4a595e3b0b04f78892cd4d0.tar.gz
android-node-v8-d847a744051dc74ca4a595e3b0b04f78892cd4d0.tar.bz2
android-node-v8-d847a744051dc74ca4a595e3b0b04f78892cd4d0.zip
test: use platformTimeout() in more places
Without these changes, the pi1-raspbian-wheezy CI node was timing out on these tests. PR-URL: https://github.com/nodejs/node/pull/4387 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-dgram-udp4.js')
-rw-r--r--test/parallel/test-dgram-udp4.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-dgram-udp4.js b/test/parallel/test-dgram-udp4.js
index f81dec398f..5b1ede414e 100644
--- a/test/parallel/test-dgram-udp4.js
+++ b/test/parallel/test-dgram-udp4.js
@@ -52,4 +52,4 @@ server.bind(server_port);
timer = setTimeout(function() {
throw new Error('Timeout');
-}, 200);
+}, common.platformTimeout(200));