From 22e9ffacdcd35e7458067d5dbb63658d66f97251 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 11 Mar 2026 12:47:34 +0100 Subject: [PATCH] haskellPackages.attoparsec-isotropic: skip problematic t_iter test Seems like the test suite is copied from attoparsec and suffers from the same flaws. --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e6b5778cb50d..3781bbba1c4e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -468,6 +468,12 @@ with haskellLib; "$0!=\"tests.buf.t_iter\"" ]; }) super.attoparsec; + attoparsec-isotropic = overrideCabal (drv: { + testFlags = drv.testFlags or [ ] ++ [ + "-p" + "$0!=\"tests.leftToRight.buf.t_iter\"" + ]; + }) super.attoparsec-isotropic; # These packages (and their reverse deps) cannot be built with profiling enabled. ghc-heap-view = lib.pipe super.ghc-heap-view [