@@ -37,17 +37,17 @@ class IdempotencyTests extends ParallelTesting {
37
37
val strawmanSourcesRevSorted = strawmanSourcesSorted.reverse
38
38
39
39
val posIdempotency = {
40
- compileFilesInDir(" ../tests/pos" , opt)(TestGroup (" posIdempotency1" )) +
41
- compileFilesInDir(" ../tests/pos" , opt)(TestGroup (" posIdempotency2" ))
40
+ compileFilesInDir(" ../tests/pos" , opt)(TestGroup (" idempotency/ posIdempotency1" )) +
41
+ compileFilesInDir(" ../tests/pos" , opt)(TestGroup (" idempotency/ posIdempotency2" ))
42
42
}
43
43
44
44
val orderIdempotency = {
45
45
(for {
46
46
testDir <- new JFile (" ../tests/order-idempotency" ).listFiles() if testDir.isDirectory
47
47
} yield {
48
48
val sources = sourcesFrom(testDir.toPath)
49
- compileList(testDir.getName, sources, opt)(TestGroup (" orderIdempotency1" )) +
50
- compileList(testDir.getName, sources.reverse, opt)(TestGroup (" orderIdempotency2" ))
49
+ compileList(testDir.getName, sources, opt)(TestGroup (" idempotency/ orderIdempotency1" )) +
50
+ compileList(testDir.getName, sources.reverse, opt)(TestGroup (" idempotency/ orderIdempotency2" ))
51
51
}).reduce(_ + _)
52
52
}
53
53
@@ -60,7 +60,7 @@ class IdempotencyTests extends ParallelTesting {
60
60
61
61
def check (name : String ) = {
62
62
val files = List (s " ../tests/idempotency/ $name.scala " , " ../tests/idempotency/IdempotencyCheck.scala" )
63
- compileList(name, files, defaultOptions)(TestGroup (" check" ))
63
+ compileList(name, files, defaultOptions)(TestGroup (" idempotency/ check" ))
64
64
}
65
65
val allChecks = {
66
66
check(" CheckOrderIdempotency" ) +
0 commit comments