From 0f9bafd03d0d2ffc2fc986f3799bdd7ae66d6f9a Mon Sep 17 00:00:00 2001 From: Xu Meng Date: Sat, 4 Jul 2020 22:31:58 -0500 Subject: [PATCH] test: skip an ipv6 test on IBM i Due to some unknown system configuration, the code `socket_ipv6.bind(0, 111::1)` does not throw the expected error EADDRNOTAVAIL on some IBM i systems. This issue is still being investigated. To get the IBM i CI passing, skip it for now. PR-URL: https://github.com/nodejs/node/pull/34209 Reviewed-By: Richard Lau Reviewed-By: Anna Henningsen --- test/parallel/parallel.status | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index 94d15064b38423..d95b3e45d40252 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -74,4 +74,6 @@ test-net-socket-connect-without-cb: SKIP test-net-socket-connecting: SKIP test-net-socket-ready-without-cb: SKIP test-net-write-after-end-nt: SKIP -test-tls-env-extra-ca: SKIP \ No newline at end of file +test-tls-env-extra-ca: SKIP +# https://github.com/nodejs/node/pull/34209 +test-dgram-error-message-address: SKIP