File tree Expand file tree Collapse file tree 3 files changed +14
-22
lines changed Expand file tree Collapse file tree 3 files changed +14
-22
lines changed Original file line number Diff line number Diff line change 1
1
module Main (main ) where
2
2
3
- import qualified Tests.Vector
4
3
import qualified Tests.Vector.UnitTests
4
+ import qualified Tests.Vector.Boxed
5
+ import qualified Tests.Vector.Primitive
6
+ import qualified Tests.Vector.Storable
7
+ import qualified Tests.Vector.Unboxed
5
8
import qualified Tests.Bundle
6
9
import qualified Tests.Move
7
10
8
11
import Test.Tasty (defaultMain ,testGroup )
9
12
10
13
main :: IO ()
11
- main = defaultMain $ testGroup " toplevel" $ Tests.Bundle. tests
12
- ++ Tests.Vector. tests
13
- ++ Tests.Vector.UnitTests. tests
14
- ++ Tests.Move. tests
15
-
14
+ main = defaultMain $ testGroup " toplevel" $ concat
15
+ [ Tests.Bundle. tests
16
+ , [ testGroup " Tests.Vector.Boxed" Tests.Vector.Boxed. tests
17
+ , testGroup " Tests.Vector.Primitive" Tests.Vector.Primitive. tests
18
+ , testGroup " Tests.Vector.Storable" Tests.Vector.Storable. tests
19
+ , testGroup " Tests.Vector.Unboxed" Tests.Vector.Unboxed. tests
20
+ ]
21
+ , Tests.Vector.UnitTests. tests
22
+ , Tests.Move. tests
23
+ ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -196,7 +196,6 @@ common tests-common
196
196
Boilerplater
197
197
Tests.Bundle
198
198
Tests.Move
199
- Tests.Vector
200
199
Tests.Vector.Property
201
200
Tests.Vector.Boxed
202
201
Tests.Vector.Storable
You can’t perform that action at this time.
0 commit comments