diff --git a/backends/BackendPassesTest.hs b/backends/BackendPassesTest.hs index 079e453..1085311 100644 --- a/backends/BackendPassesTest.hs +++ b/backends/BackendPassesTest.hs @@ -144,7 +144,7 @@ testTransformWaitFor5 = TestCase $ testPass "testTransformWaitFor5" exp (transfo ---Returns the list of tests: tests :: Test -tests = TestList +tests = TestLabel "BackendPassesTest" $ TestList [ testTransformWaitFor0 ,testTransformWaitFor1 diff --git a/backends/GenerateCTest.hs b/backends/GenerateCTest.hs index dd4984c..0789bad 100644 --- a/backends/GenerateCTest.hs +++ b/backends/GenerateCTest.hs @@ -1146,7 +1146,7 @@ testMobile = TestList ---Returns the list of tests: tests :: Test -tests = TestList +tests = TestLabel "GenerateCTest" $ TestList [ testActuals ,testArraySizes diff --git a/frontends/RainTypesTest.hs b/frontends/RainTypesTest.hs index 36de955..3a2fe8c 100644 --- a/frontends/RainTypesTest.hs +++ b/frontends/RainTypesTest.hs @@ -414,7 +414,7 @@ checkExpressionTest = TestList markRainTest tests :: Test -tests = TestList +tests = TestLabel "RainTypesTest" $ TestList [ constantFoldTest ,annotateIntTest diff --git a/transformations/PassTest.hs b/transformations/PassTest.hs index 40a7511..8f7a992 100644 --- a/transformations/PassTest.hs +++ b/transformations/PassTest.hs @@ -596,7 +596,7 @@ testPullRepCounts = TestList --Returns the list of tests: tests :: Test -tests = TestList +tests = TestLabel "PassTest" $ TestList [ testFunctionsToProcs0 ,testFunctionsToProcs1