1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 10:47:32 +03:00
juvix/test/Termination.hs
Jonathan Cubides f16570e546
Add the termination checker to the pipeline (#111)
* [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>
2022-05-30 13:40:52 +02:00

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]