Skip to content

Commit

Permalink
libuv: disable another flaky test on Darwin
Browse files Browse the repository at this point in the history
I really want to avoid debugging these on Darwin.
  • Loading branch information
vcunat committed Mar 5, 2017
1 parent 81db3f2 commit 2fd787d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libuv/default.nix
Expand Up @@ -18,8 +18,8 @@ stdenv.mkDerivation rec {
"spawn_setuid_fails" "spawn_setgid_fails" "fs_chown" # user namespaces
"getaddrinfo_fail" "getaddrinfo_fail_sync"
]
# sometimes: timeout (no output)
++ stdenv.lib.optional stdenv.isDarwin "process_title";
# sometimes: timeout (no output), failed uv_listen
++ stdenv.lib.optionals stdenv.isDarwin [ "process_title" "emfile" ];
tdRegexp = lib.concatStringsSep "\\|" toDisable;
in lib.optionalString doCheck ''
sed '/${tdRegexp}/d' -i test/test-list.h
Expand Down

0 comments on commit 2fd787d

Please sign in to comment.