Idris2-boot/tests
Edwin Brady 946881d56c Make sure we only insert 'Delay' at the top level
If we postpone unification problems, it's not necessarily at the top
level of a term, but then if we retry and find we need to insert a
'Delay' or 'Force' then it had better be at the top level or we'll get
an incorrect term. So, keep track of this in postponed constraints.
2020-03-12 14:58:06 +00:00
..
chez Move network test to chez test suite 2020-03-05 18:03:12 +00:00
ideMode Fix IDE Mode for Atom 2020-01-31 19:21:42 +01:00
idris2 Make sure we only insert 'Delay' at the top level 2020-03-12 14:58:06 +00:00
ttimp More documentation refreshing 2020-02-25 22:18:02 +00:00
typedd-book Better approach to erasure in pattern matching 2020-01-21 18:47:43 +00:00
Main.idr Make sure we only insert 'Delay' at the top level 2020-03-12 14:58:06 +00:00
Makefile Add instructions on how to run a subset of the tests 2019-07-28 20:21:34 +02:00
README.md Add instructions on how to run a subset of the tests 2019-07-28 20:21:34 +02:00

Tests

Note: The commands listed in this section should be run from the repository's root folder.

Run all tests: make test

To run only a subset of the tests use: make test only=NAME. NAME is matched against the path to each test case.

Examples:

  • make test only=chez will run all Chez Scheme tests.
  • make test only=ttimp/basic will run all basic tests for TTImp.
  • make test only=idris2/basic001 will run a specific test.