From bbcfeaa1b1fc9e34ec21c658ed061ccf07f2b751 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Mon, 3 Jun 2024 11:46:24 +0200 Subject: [PATCH] test: update granular/ttrie.nix.golden --- .../ttrie.nix.golden | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/cabal2nix/test/golden-test-cases-granular/ttrie.nix.golden b/cabal2nix/test/golden-test-cases-granular/ttrie.nix.golden index 2118e961..044cd4ad 100644 --- a/cabal2nix/test/golden-test-cases-granular/ttrie.nix.golden +++ b/cabal2nix/test/golden-test-cases-granular/ttrie.nix.golden @@ -22,39 +22,39 @@ in { libraries = {inherit ttrie;}; exes = { }; testExes = { - map-properties = mkDerivation { - pname = "map-properties"; + map-properties = mkDerivation { + pname = "map-properties"; + version = "0.1.2.1"; + sha256 = "deadbeef"; + isLibrary = false; + isExecutable = true; + testHaskellDepends = [ + base containers hashable QuickCheck stm test-framework + test-framework-quickcheck2 ttrie + ]; + buildTarget = "map-properties"; + homepage = "http://github.com/mcschroeder/ttrie"; + description = "Contention-free STM hash map"; + license = lib.licenses.mit; + }; + }; + benchExes = { + bench = mkDerivation { + pname = "bench"; version = "0.1.2.1"; sha256 = "deadbeef"; isLibrary = false; isExecutable = true; - testHaskellDepends = [ - base containers hashable QuickCheck stm test-framework - test-framework-quickcheck2 ttrie + benchmarkHaskellDepends = [ + async base bifunctors containers criterion-plus deepseq mwc-random + primitive stm stm-containers stm-stats text transformers ttrie + unordered-containers vector ]; - buildTarget = "map-properties"; + doBenchmark = true; + buildTarget = "bench"; homepage = "http://github.com/mcschroeder/ttrie"; description = "Contention-free STM hash map"; license = lib.licenses.mit; }; - }; - benchExes = { - bench = mkDerivation { - pname = "bench"; - version = "0.1.2.1"; - sha256 = "deadbeef"; - isLibrary = false; - isExecutable = true; - benchmarkHaskellDepends = [ - async base bifunctors containers criterion-plus deepseq mwc-random - primitive stm stm-containers stm-stats text transformers ttrie - unordered-containers vector - ]; - doBenchmark = true; - buildTarget = "bench"; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = lib.licenses.mit; }; - }; }