mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
Merge pull request #46222 from qolii/libuv_disableATestOnAarch32
libuv: Disable temperamental shutdown_close_pipe test on Aarch32.
This commit is contained in:
commit
bcee562e69
@ -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 ''
|
||||
|
Loading…
Reference in New Issue
Block a user