libuv: disable getaddrinfo tests.

Seem to require network access, at least on darwin
This commit is contained in:
Shea Levy 2017-01-06 21:09:49 -05:00
parent 56cceca999
commit c5c7911ac2

View File

@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
toDisable = [ toDisable = [
"getnameinfo_basic" # probably network-dependent "getnameinfo_basic" # probably network-dependent
"spawn_setuid_fails" "spawn_setgid_fails" "fs_chown" # user namespaces "spawn_setuid_fails" "spawn_setgid_fails" "fs_chown" # user namespaces
"getaddrinfo_fail" "getaddrinfo_fail_sync"
]; ];
tdRegexp = lib.concatStringsSep "\\|" toDisable; tdRegexp = lib.concatStringsSep "\\|" toDisable;
in lib.optionalString doCheck '' in lib.optionalString doCheck ''
@ -33,8 +34,6 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
crossAttrs.doCheck = false;
meta = with lib; { meta = with lib; {
description = "A multi-platform support library with a focus on asynchronous I/O"; description = "A multi-platform support library with a focus on asynchronous I/O";
homepage = https://github.com/libuv/libuv; homepage = https://github.com/libuv/libuv;