Skip to content

Commit

Permalink
libuv: disable flaky darwin test
Browse files Browse the repository at this point in the history
test fails on darwin sometimes
  • Loading branch information
paparodeo committed Dec 16, 2024
1 parent c225fc4 commit 1347cc7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/development/libraries/libuv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@ stdenv.mkDerivation (finalAttrs: {
"udp_create_early_bad_bind"
"fs_event_watch_delete_dir"
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && lib.versionOlder finalAttrs.version "1.49.3") [
# https://github.com/libuv/libuv/issues/4650
# can enable on upgrade from 1.49.2
"udp_mmsg"
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
# fail on macos < 10.15 (starting in libuv 1.47.0)
"fs_write_alotof_bufs_with_offset"
Expand Down

0 comments on commit 1347cc7

Please sign in to comment.