node/test/parallel/test-dgram-send-empty-buffer.js
Rich Trott d3195615c0 test: add common.platformTimeout() to dgram test
Use common.platformTimeout() to mitigate potential for CI to timeout
on slower devices.

Ref: https://github.com/nodejs/node/issues/4937
PR-URL: https://github.com/nodejs/node/pull/4938
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Myles Borins <mborins@us.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-01-31 14:07:25 -08:00

25 lines
565 B
JavaScript

'use strict';
const common = require('../common');
const dgram = require('dgram');
if (process.platform === 'darwin') {
console.log('1..0 # Skipped: because of 17894467 Apple bug');
return;
}
const client = dgram.createSocket('udp4');
client.bind(common.PORT);
client.on('message', function(buffer, bytes) {
clearTimeout(timer);
client.close();
});
const buf = new Buffer(0);
client.send(buf, 0, 0, common.PORT, '127.0.0.1', function(err, len) { });
const timer = setTimeout(function() {
throw new Error('Timeout');
}, common.platformTimeout(200));