We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3ca4d commit ebf7784Copy full SHA for ebf7784
test/Spec.hs
@@ -1,17 +1,9 @@
1
import HashSetUtilsSpec
2
import SequenceUtilsSpec
3
import Test.HUnit
4
-import System.Exit (exitFailure)
5
-
6
-processCounts :: Counts -> IO ()
7
-processCounts counts = do
8
- if errors counts + failures counts == 0
9
- then return ()
10
- else exitFailure
11
12
main :: IO ()
13
main = do
14
- hsCounts <- runTestTT hashSetTestCases
15
- processCounts hsCounts
16
- seqCounts <- runTestTT seqTestCases
17
- processCounts seqCounts
+ _ <- runTestTT hashSetTestCases
+ _ <- runTestTT seqTestCases
+ return ()
0 commit comments