summary refs log tree commit diff
path: root/pkgs/development/libraries/libuv
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2019-04-20 15:46:25 +0200
committerGitHub <noreply@github.com>2019-04-20 15:46:25 +0200
commitcc6b56d38122c1b62e5fe6783f1467171f743822 (patch)
tree59630c3ae4730b80e1b992c9a59e50bc9c6b73c3 /pkgs/development/libraries/libuv
parentd3259ed6739436ede941b864c1c332080a6058ac (diff)
parent22157b544bf9ed468f89ab83affc3c7ae86950e6 (diff)
downloadnixpkgs-cc6b56d38122c1b62e5fe6783f1467171f743822.tar
nixpkgs-cc6b56d38122c1b62e5fe6783f1467171f743822.tar.gz
nixpkgs-cc6b56d38122c1b62e5fe6783f1467171f743822.tar.bz2
nixpkgs-cc6b56d38122c1b62e5fe6783f1467171f743822.tar.lz
nixpkgs-cc6b56d38122c1b62e5fe6783f1467171f743822.tar.xz
nixpkgs-cc6b56d38122c1b62e5fe6783f1467171f743822.tar.zst
nixpkgs-cc6b56d38122c1b62e5fe6783f1467171f743822.zip
Merge pull request #59624 from LnL7/darwin-libuv
libuv: fix darwin sandbox build
Diffstat (limited to 'pkgs/development/libraries/libuv')
-rw-r--r--pkgs/development/libraries/libuv/default.nix27
1 files changed, 17 insertions, 10 deletions
diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix
index 7b8ea82e03d..32697bdc0e0 100644
--- a/pkgs/development/libraries/libuv/default.nix
+++ b/pkgs/development/libraries/libuv/default.nix
@@ -17,11 +17,10 @@ stdenv.mkDerivation rec {
       "spawn_setuid_fails" "spawn_setgid_fails" "fs_chown" # user namespaces
       "getaddrinfo_fail" "getaddrinfo_fail_sync"
       "threadpool_multiple_event_loops" # times out on slow machines
-    ]
-      # Sometimes: timeout (no output), failed uv_listen. Someone
-      # should report these failures to libuv team. There tests should
-      # be much more robust.
-      ++ stdenv.lib.optionals stdenv.isDarwin [
+    ] ++ stdenv.lib.optionals stdenv.isDarwin [
+        # Sometimes: timeout (no output), failed uv_listen. Someone
+        # should report these failures to libuv team. There tests should
+        # be much more robust.
         "process_title" "emfile" "poll_duplex" "poll_unidirectional"
         "ipc_listen_before_write" "ipc_listen_after_write" "ipc_tcp_connection"
         "tcp_alloc_cb_fail" "tcp_ping_pong" "tcp_ref3" "tcp_ref4"
@@ -34,11 +33,16 @@ stdenv.mkDerivation rec {
         "multiple_listen" "delayed_accept"
         "shutdown_close_tcp" "shutdown_eof" "shutdown_twice" "callback_stack"
         "tty_pty" "condvar_5"
-      ] ++ stdenv.lib.optionals stdenv.isAarch32 [
-        # I observe this test failing with some regularity on ARMv7:
-        # https://github.com/libuv/libuv/issues/1871
-        "shutdown_close_pipe"
-      ];
+        # Tests that fail when sandboxing is enabled.
+        "fs_event_close_in_callback" "fs_event_watch_dir"
+        "fs_event_watch_dir_recursive" "fs_event_watch_file"
+        "fs_event_watch_file_current_dir" "fs_event_watch_file_exact_path"
+        "process_priority" "udp_create_early_bad_bind"
+    ] ++ stdenv.lib.optionals stdenv.isAarch32 [
+      # I observe this test failing with some regularity on ARMv7:
+      # https://github.com/libuv/libuv/issues/1871
+      "shutdown_close_pipe"
+    ];
     tdRegexp = lib.concatStringsSep "\\|" toDisable;
     in lib.optionalString doCheck ''
       sed '/${tdRegexp}/d' -i test/test-list.h
@@ -55,6 +59,9 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
 
+  # Some of the tests use localhost networking.
+  __darwinAllowLocalNetworking = true;
+
   meta = with lib; {
     description = "A multi-platform support library with a focus on asynchronous I/O";
     homepage    = https://github.com/libuv/libuv;