Idris2-boot/tests
Edwin Brady c01986a62e Preserve order of arguments in unification
Sometimes we swap the arguments, to reduce code duplication, but we need
to remember we've done that since (1 x : a) -> b is valid for an
argument of type (x : a) -> b, but not vice versa (that is, we have a
teensy bit of subtying to deal with, for convenience...).

This fix seems a bit ugly, but we do at least now propagate the
information. Fixes #82.
2019-08-16 11:32:16 +01:00
..
chez Start adding tests for TypeDD book 2019-06-30 15:50:58 +01:00
idris2 Preserve order of arguments in unification 2019-08-16 11:32:16 +01:00
ttimp Allow deferring definitions to other modules 2019-08-06 13:33:30 +01:00
typedd-book Finish Chapter 12 tests 2019-07-12 09:34:29 +02:00
Main.idr Preserve order of arguments in unification 2019-08-16 11:32:16 +01: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.