Merge pull request #46222 from qolii/libuv_disableATestOnAarch32

libuv: Disable temperamental shutdown_close_pipe test on Aarch32.
This commit is contained in:
Matthew Bauer 2018-09-10 14:51:30 -05:00 committed by GitHub
commit bcee562e69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,6 +41,10 @@ stdenv.mkDerivation rec {
"multiple_listen" "delayed_accept"
"shutdown_close_tcp" "shutdown_eof" "shutdown_twice" "callback_stack"
"tty_pty"
] ++ stdenv.lib.optionals stdenv.isAarch32 [
# I observe this test failing with some regularity on ARMv7:
# https://github.com/libuv/libuv/issues/1871
"shutdown_close_pipe"
];
tdRegexp = lib.concatStringsSep "\\|" toDisable;
in lib.optionalString doCheck ''