Skip to content

Commit eaaef04

Browse files
test,ios: don't skip empty UDP packet tests
iOS 13.4 fixes the bug with empty UDP packets, so the tests can be run again.
1 parent a3e9ae9 commit eaaef04

6 files changed

+0
-18
lines changed

test/parallel/test-dgram-connect-send-empty-array.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
const common = require('../common');
44

5-
if (common.isOSX || common.isIOS)
6-
common.skip('because of 17894467 Apple bug');
7-
85
const assert = require('assert');
96
const dgram = require('dgram');
107

test/parallel/test-dgram-connect-send-empty-buffer.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
'use strict';
22
const common = require('../common');
33

4-
if (common.isOSX || common.isIOS)
5-
common.skip('because of 17894467 Apple bug');
6-
74
const assert = require('assert');
85
const dgram = require('dgram');
96

test/parallel/test-dgram-connect-send-empty-packet.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
'use strict';
22
const common = require('../common');
33

4-
if (common.isOSX || common.isIOS)
5-
common.skip('because of 17894467 Apple bug');
6-
74
const assert = require('assert');
85
const dgram = require('dgram');
96

test/parallel/test-dgram-send-empty-array.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
const common = require('../common');
44

5-
if (common.isOSX || common.isIOS)
6-
common.skip('because of 17894467 Apple bug');
7-
85
const assert = require('assert');
96
const dgram = require('dgram');
107

test/parallel/test-dgram-send-empty-buffer.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
'use strict';
2323
const common = require('../common');
2424

25-
if (common.isOSX || common.isIOS)
26-
common.skip('because of 17894467 Apple bug');
27-
2825
const assert = require('assert');
2926
const dgram = require('dgram');
3027

test/parallel/test-dgram-send-empty-packet.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
'use strict';
22
const common = require('../common');
33

4-
if (common.isOSX || common.isIOS)
5-
common.skip('because of 17894467 Apple bug');
6-
74
const assert = require('assert');
85
const dgram = require('dgram');
96

0 commit comments

Comments
 (0)