1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 08:27:03 +03:00
juvix/test/Asm.hs

11 lines
335 B
Haskell
Raw Normal View History

2022-09-29 18:44:55 +03:00
module Asm where
2022-12-06 13:33:20 +03:00
import Asm.Compile qualified as Compile
2022-09-29 18:44:55 +03:00
import Asm.Run qualified as Run
import Asm.Transformation qualified as Transformation
2022-09-29 18:44:55 +03:00
import Asm.Validate qualified as Validate
import Base
allTests :: TestTree
2022-12-06 13:33:20 +03:00
allTests = testGroup "JuvixAsm tests" [Validate.allTests, Run.allTests, Transformation.allTests, Compile.allTests]