mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
libuv: disable some tests on FreeBSD
(cherry picked from commit cacfa997c1
)
This commit is contained in:
parent
8d48200ead
commit
31268cc461
@ -79,6 +79,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
# I observe this test failing with some regularity on ARMv7:
|
# I observe this test failing with some regularity on ARMv7:
|
||||||
# https://github.com/libuv/libuv/issues/1871
|
# https://github.com/libuv/libuv/issues/1871
|
||||||
"shutdown_close_pipe"
|
"shutdown_close_pipe"
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isFreeBSD [
|
||||||
|
# EOPNOTSUPP when performed in jailed build env
|
||||||
|
"tcp_reuseport" "udp_reuseport"
|
||||||
|
# Fails when built on non-nix FreeBSD
|
||||||
|
# https://github.com/libuv/libuv/issues/4606
|
||||||
|
"fs_event_watch_delete_dir"
|
||||||
];
|
];
|
||||||
tdRegexp = lib.concatStringsSep "\\|" toDisable;
|
tdRegexp = lib.concatStringsSep "\\|" toDisable;
|
||||||
in lib.optionalString (finalAttrs.finalPackage.doCheck) ''
|
in lib.optionalString (finalAttrs.finalPackage.doCheck) ''
|
||||||
|
Loading…
Reference in New Issue
Block a user