summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/halide
diff options
context:
space:
mode:
authorTom Westerhout <14264576+twesterhout@users.noreply.github.com>2023-11-03 18:54:02 +0100
committerTom Westerhout <14264576+twesterhout@users.noreply.github.com>2023-11-03 18:59:37 +0100
commitf6370efdfbb57b08b5ee1b18a535dea1b2938c52 (patch)
treeba0c39a8d73476aebef0bfd3e0223244a2a64713 /pkgs/development/compilers/halide
parentc841f93dd98880f5a62c4995a3c9082f4478d2d6 (diff)
halide: disable fuzzing tests
Diffstat (limited to 'pkgs/development/compilers/halide')
-rw-r--r--pkgs/development/compilers/halide/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/compilers/halide/default.nix b/pkgs/development/compilers/halide/default.nix
index 232a006e4cf5..7684ffded9ea 100644
--- a/pkgs/development/compilers/halide/default.nix
+++ b/pkgs/development/compilers/halide/default.nix
@@ -57,6 +57,10 @@ stdenv.mkDerivation rec {
"-DTARGET_WEBASSEMBLY=OFF"
# Disable performance tests since they may fail on busy machines
"-DWITH_TEST_PERFORMANCE=OFF"
+ # Disable fuzzing tests -- this has become the default upstream after the
+ # v16 release (See https://github.com/halide/Halide/commit/09c5d1d19ec8e6280ccbc01a8a12decfb27226ba)
+ # These tests also fail to compile on Darwin because of some missing command line options...
+ "-DWITH_TEST_FUZZ=OFF"
];
doCheck = true;