Skip to content

Commit

Permalink
libuv: disable some tests on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmot committed Nov 17, 2024
1 parent 2afd08e commit cacfa99
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/libraries/libuv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ stdenv.mkDerivation (finalAttrs: {
# I observe this test failing with some regularity on ARMv7:
# https://github.com/libuv/libuv/issues/1871
"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;
in lib.optionalString (finalAttrs.finalPackage.doCheck) ''
Expand Down

0 comments on commit cacfa99

Please sign in to comment.