3
0
Fork 0
forked from mirrors/nixpkgs

libuv: disable another flaky test on Darwin

I really want to avoid debugging these on Darwin.
This commit is contained in:
Vladimír Čunát 2017-03-05 12:38:20 +01:00
parent 81db3f2b0b
commit 2fd787ddd1
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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