libuv: disable another flaky test on Darwin
I really want to avoid debugging these on Darwin.
This commit is contained in:
parent
81db3f2b0b
commit
2fd787ddd1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue