From ed2b3201768ff0050fb60b30b4887db05f48657b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Mancilla?= Date: Sun, 10 Jul 2022 00:13:31 -0400 Subject: [PATCH] boofuzz: fix build on darwin Disable tests that need network access. --- pkgs/tools/security/boofuzz/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/security/boofuzz/default.nix b/pkgs/tools/security/boofuzz/default.nix index 61ba2136d794..220a372b2e9e 100644 --- a/pkgs/tools/security/boofuzz/default.nix +++ b/pkgs/tools/security/boofuzz/default.nix @@ -37,9 +37,10 @@ python3.pkgs.buildPythonApplication rec { ]; disabledTests = [ - # Tests require socket access - "test_raw_l2" - "test_raw_l3" + "TestNetworkMonitor" + "TestNoResponseFailure" + "TestProcessMonitor" + "TestSocketConnection" ]; pythonImportsCheck = [ @@ -51,7 +52,5 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/jtpereyda/boofuzz"; license = with licenses; [ gpl2Plus ]; maintainers = with maintainers; [ fab ]; - # FAILED unit_tests/test_monitors.py::TestProcessMonitor::test_set_options_persistent - broken = (stdenv.isDarwin && stdenv.isx86_64); }; }