mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 16:55:46 +00:00

We now have adequate AIX hardware to add AIX to the regular regression runs. However, there are a couple of failing tests even though AIX was green at one point. This PR marks those tests as flaky so that we can add AIX so that we can spot any new regressions without making the builds RED The tests are being worked under the following PRs - being worked under https://github.com/nodejs/node/pull/7564 test-async-wrap-post-did-throw test-async-wrap-throw-from-callback test-crypto-random - being worked under https://github.com/nodejs/node/issues/7973 test-stdio-closed - covered by https://github.com/nodejs/node/issues/3796 test-debug-signal-cluster PR-URL: https://github.com/nodejs/node/pull/8065 Reviewed-By: joaocgreis - João Reis <reis@janeasystems.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
prefix parallel
|
|
|
|
# To mark a test as flaky, list the test name in the appropriate section
|
|
# below, without ".js", followed by ": PASS,FLAKY". Example:
|
|
# sample-test : PASS,FLAKY
|
|
|
|
[true] # This section applies to all platforms
|
|
|
|
[$system==win32]
|
|
test-tick-processor : PASS,FLAKY
|
|
|
|
[$system==linux]
|
|
test-tick-processor : PASS,FLAKY
|
|
|
|
[$system==macos]
|
|
|
|
[$system==solaris] # Also applies to SmartOS
|
|
test-debug-signal-cluster : PASS,FLAKY
|
|
|
|
[$system==freebsd]
|
|
|
|
# fs-watch currently needs special configuration on AIX and we
|
|
# want to improve under https://github.com/nodejs/node/issues/5085.
|
|
# Tests are disabled so CI can be green and we can spot other
|
|
# regressions until this work is complete
|
|
[$system==aix]
|
|
test-fs-watch-enoent : FAIL, PASS
|
|
test-fs-watch-encoding : FAIL, PASS
|
|
|
|
# being worked under https://github.com/nodejs/node/pull/7564
|
|
test-async-wrap-post-did-throw : PASS, FLAKY
|
|
test-async-wrap-throw-from-callback : PASS, FLAKY
|
|
test-crypto-random : PASS, FLAKY
|
|
|
|
#being worked under https://github.com/nodejs/node/issues/7973
|
|
test-stdio-closed : PASS, FLAKY
|
|
|
|
#covered by https://github.com/nodejs/node/issues/3796
|
|
# but more frequent on AIX ?
|
|
test-debug-signal-cluster : PASS, FLAKY
|