Browse Source

test: fix dgram-bind-default-address on osx

Allow the IPv4-mapped-as-IPv6 style address.
v0.10.5-release
isaacs 12 years ago
parent
commit
1d794ec43e
  1. 5
      test/simple/test-dgram-bind-default-address.js

5
test/simple/test-dgram-bind-default-address.js

@ -31,6 +31,9 @@ dgram.createSocket('udp4').bind(common.PORT + 0, common.mustCall(function() {
dgram.createSocket('udp6').bind(common.PORT + 1, common.mustCall(function() { dgram.createSocket('udp6').bind(common.PORT + 1, common.mustCall(function() {
assert.equal(this.address().port, common.PORT + 1); assert.equal(this.address().port, common.PORT + 1);
assert.equal(this.address().address, '::'); var address = this.address().address;
if (address === '::ffff:0.0.0.0')
address = '::';
assert.equal(address, '::');
this.close(); this.close();
})); }));

Loading…
Cancel
Save