Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
930647d
test: skip tests related to CI failures on AIX
sam-github Jun 28, 2019
588b761
test: skip stringbytes-external-exceed-max on AIX
sam-github Jul 2, 2019
7aca9cb
test: fix pty test hangs on aix
bnoordhuis Jul 8, 2019
65e9b0f
test: specialize OOM check for AIX
sam-github Jul 24, 2019
a7e5fe1
test: unskip tests that now pass on AIX
sam-github Aug 8, 2019
37e24b1
deps: V8: backport d520ebb
targos Apr 23, 2019
529b2ad
tools: update certdata.txt
sam-github Dec 18, 2018
4fbadf6
tools: update certdata.txt
sam-github Apr 23, 2019
c582fef
tools: update certdata.txt
sam-github Jul 22, 2019
b2a6b32
crypto: update root certificates
sam-github Dec 18, 2018
347fcd3
crypto: update root certificates
sam-github Apr 23, 2019
d57f797
tls: partially backport pull request #26415
bnoordhuis Aug 15, 2019
cc9d005
crypto: update root certificates
sam-github Jul 22, 2019
3ee076f
stream: ensure writable.destroy() emits error once
lpinca Feb 12, 2019
dc9d645
deps: upgrade openssl sources to 1.0.2s
sam-github Jun 14, 2019
da99d3f
deps: copy all openssl header files to include dir
sam-github Jun 14, 2019
87eee99
deps: fix openssl assembly error on ia32 win32
indutny Jan 8, 2014
9663ae3
deps: fix asm build error of openssl in x86_win32
Feb 13, 2015
dd28596
openssl: fix keypress requirement in apps on win32
Feb 17, 2015
5682e50
deps: add -no_rand_screen to openssl s_client
May 27, 2015
1a5dc6a
http: check for existance in resetHeadersTimeoutOnReqEnd
mcollina Mar 2, 2019
92a2f8b
test,win: cleanup exec-timeout processes
joaocgreis Jul 16, 2019
559a8e3
http2: do not crash on stream listener removal w/ destroyed session
addaleax Sep 5, 2019
e45b6a3
http2: do not start reading after write if new write is on wire
addaleax Sep 1, 2019
4efffd5
2019-10-09, Version 8.16.2 'Carbon' (LTS)
BethGriggs Sep 19, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: skip tests related to CI failures on AIX
These tests seem to trigger failures in the entire CI job (not just the
test) on AIX. Skip them to see if that helps alleviate spurious failures
in node-test-commit-aix (and the upstream PR and commit test jobs).

See:
- nodejs/build#1820 (comment)
- nodejs/build#1847 (comment)

PR-URL: #28469
Backport-PR-URL: #29599
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
sam-github authored and BethGriggs committed Sep 19, 2019
commit 930647d0feef06f06d6cd24dfd3457829d556e6b
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ const skipMessage = 'intensive toString tests due to memory confinements';
if (!common.enoughTestMem)
common.skip(skipMessage);

// See https://github.com/nodejs/build/issues/1820#issuecomment-505998851
// See https://github.com/nodejs/node/pull/28469
if (process.platform === 'aix')
common.skip('flaky on AIX');

const binding = require(`./build/${common.buildType}/binding`);
const assert = require('assert');

Expand Down
3 changes: 3 additions & 0 deletions test/message/message.status
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ prefix message

[$system==freebsd]

[$system==aix]
# https://github.com/nodejs/node/pull/28469
vm_dont_display_syntax_error: SKIP
4 changes: 4 additions & 0 deletions test/pseudo-tty/pseudo-tty.status
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ prefix pseudo-tty
[$system==aix]
# being investigated under https://github.com/nodejs/node/issues/9728
test-tty-wrap : FAIL, PASS
# https://github.com/nodejs/build/issues/1820#issuecomment-505998851
# https://github.com/nodejs/node/pull/28469
console-dumb-tty: SKIP
test-fatal-error: SKIP

[$system==solaris]
# https://github.com/nodejs/node/pull/16225 - `ioctl(fd, TIOCGWINSZ)` seems
Expand Down
3 changes: 3 additions & 0 deletions test/sequential/sequential.status
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ test-http2-settings-flood: PASS,FLAKY
[$system==freebsd]

[$system==aix]
# https://github.com/nodejs/node/pull/28469
test-async-wrap-getasyncid: SKIP
test-buffer-creation-regression: SKIP