debug-info test

This commit is contained in:
Lei Zhu
2023-07-22 16:07:49 +08:00
parent 83b82c328b
commit bcdf2b23f1
5 changed files with 43 additions and 15 deletions

View File

@@ -1,6 +1,10 @@
module Main where
import Test.Tasty
import qualified SetTest
import qualified DebugInfoTest
main :: IO ()
main = defaultMain SetTest.setTests
main = defaultMain $ testGroup "ghcup"
[ SetTest.setTests
, DebugInfoTest.debugInfoTests
]