mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
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: - https://github.com/nodejs/build/issues/1820#issuecomment-505998851 - https://github.com/nodejs/build/issues/1847#issuecomment-504210708 PR-URL: https://github.com/nodejs/node/pull/28469 Backport-PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
@@ -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');
|
||||
|
||||
|
||||
@@ -16,3 +16,6 @@ prefix message
|
||||
|
||||
[$system==freebsd]
|
||||
|
||||
[$system==aix]
|
||||
# https://github.com/nodejs/node/pull/28469
|
||||
vm_dont_display_syntax_error: SKIP
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user