2022-04-26 12:17:59 -04:00
|
|
|
module Tests
|
|
|
|
|
2022-05-01 18:19:09 -04:00
|
|
|
import TAP
|
2023-01-08 08:58:18 -05:00
|
|
|
-- import Tests.Unicode
|
|
|
|
-- import Tests.Lexer
|
|
|
|
-- import Tests.Parser
|
2022-05-25 10:10:19 -04:00
|
|
|
import Tests.Reduce
|
2022-04-27 14:06:39 -04:00
|
|
|
import Tests.Equal
|
2022-05-01 18:19:09 -04:00
|
|
|
import System
|
2022-04-27 14:06:39 -04:00
|
|
|
|
2022-04-26 12:17:59 -04:00
|
|
|
|
2022-05-02 11:13:13 -04:00
|
|
|
allTests = [
|
2023-01-08 08:58:18 -05:00
|
|
|
-- Unicode.tests,
|
|
|
|
-- Lexer.tests,
|
|
|
|
-- Parser.tests,
|
2022-05-25 10:10:19 -04:00
|
|
|
Reduce.tests,
|
2022-05-06 15:23:58 -04:00
|
|
|
Equal.tests
|
2022-05-02 11:13:13 -04:00
|
|
|
]
|
2022-04-27 14:06:39 -04:00
|
|
|
|
2022-05-24 06:09:17 -04:00
|
|
|
main = TAP.main !getTestOpts allTests
|