Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 58341dd

Browse files
committedApr 19, 2024·
Explicitly list testTargets
`testTarget` is a space separated list of test-suites. We explicitly list all test suites. This allows us to implement logic in the nixpkgs builder to run test suites in separate passthru.test derivations.
1 parent 89857ea commit 58341dd

File tree

179 files changed

+179
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+179
-2
lines changed
 

‎cabal2nix/src/Distribution/Nixpkgs/Haskell/FromCabal.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ fromPackageDescription haskellResolver nixpkgsResolver missingDeps flags Package
112112
& jailbreak .~ False
113113
& doCheck .~ True
114114
& doBenchmark .~ False
115-
& testTarget .~ mempty
115+
& testTarget .~ unwords (map (unUnqualComponentName . testName) testSuites)
116116
& hyperlinkSource .~ True
117117
& enableSplitObjs .~ True
118118
& enableLibraryProfiling .~ False

‎cabal2nix/src/Distribution/Nixpkgs/Haskell/FromCabal/PostProcess.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ opencvOverrides = set phaseOverrides "hardeningDisable = [ \"bindnow\" ];"
358358
. over (libraryDepends . pkgconfig) (replace (pkg "opencv") (pkg "opencv3"))
359359

360360
hspecCoreOverrides :: Derivation -> Derivation -- https://github.com/hspec/hspec/issues/330
361-
hspecCoreOverrides = set phaseOverrides "testTarget = \"--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'\";"
361+
hspecCoreOverrides = set testTarget "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"
362362

363363
cabal2nixOverrides :: Derivation -> Derivation
364364
cabal2nixOverrides = set phaseOverrides $ unlines

0 commit comments

Comments
 (0)
Please sign in to comment.