File tree 4 files changed +20
-2
lines changed
cabal-testsuite/PackageTests/Target
4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ # cabal clean
2
+ # cabal v2-target
3
+ Configuration is affected by the following files:
4
+ - cabal.project
5
+ Resolving dependencies...
6
+ Fully qualified target forms:
7
+ - a:bench:a-bench
8
+ - b:bench:b-bench
Original file line number Diff line number Diff line change @@ -16,3 +16,7 @@ main = do
16
16
cabalTest' " all-tests" $ do
17
17
cabal " clean" []
18
18
cabal " v2-target" [" all:tests" ]
19
+
20
+ cabalTest' " all-benches" $ do
21
+ cabal " clean" []
22
+ cabal " v2-target" [" all:benches" ]
Original file line number Diff line number Diff line change @@ -9,4 +9,7 @@ library a-sublib
9
9
executable a-exe
10
10
test-suite a-test
11
11
type : exitcode-stdio-1.0
12
- main-is : Test.hs
12
+ main-is : Test.hs
13
+ benchmark a-bench
14
+ type : exitcode-stdio-1.0
15
+ main-is : Bench.hs
Original file line number Diff line number Diff line change @@ -9,4 +9,7 @@ library b-sublib
9
9
executable b-exe
10
10
test-suite b-test
11
11
type : exitcode-stdio-1.0
12
- main-is : Test.hs
12
+ main-is : Test.hs
13
+ benchmark b-bench
14
+ type : exitcode-stdio-1.0
15
+ main-is : Bench.hs
You can’t perform that action at this time.
0 commit comments