mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 10:47:32 +03:00
f16570e546
* [WIP] EntryPoint now has options. --no-termination is a new global opt. * Add TerminationChecking to the pipeline * Add TerminationChecking to the pipeline * Keep GlobalOptions in App * Fix reviewer's comments * delete unnecessary parens Co-authored-by: Jan Mas Rovira <janmasrovira@gmail.com>
9 lines
231 B
Haskell
9 lines
231 B
Haskell
module Termination (allTests) where
|
|
|
|
import Base
|
|
import Termination.Negative qualified as N
|
|
import Termination.Positive qualified as P
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "Termination checker tests" [P.allTests, N.allTests]
|