Idris2-boot/tests
lodi 76ff99d370 allow overriding racket/chicken paths through environment variables
This is to help Idris2 codegen the correct scripts on NixOS where
Racket and Chicken aren't installed in the standard locations, and
the /usr/bin/env trampoline is disabled at package build time.
This now matches the existing Chez behavior.

Also, fixed the test runner to restore the correct working directory
after a failed test, and fixed the top-level Makefile to allow the
IDRIS2_VERSION variable to be queried without building the project.
2019-10-28 22:44:16 -04:00
..
chez Support foreign callbacks in Racket back end 2019-09-29 19:37:30 +01:00
ideMode Add optional version tag when build in between releases 2019-10-14 12:01:29 +06:00
idris2 Print banner before typechecking 2019-10-26 13:39:50 +01:00
ttimp allow matching constants in with clauses fix #122 2019-10-15 21:52:44 +02:00
typedd-book Add '--no-banner' option 2019-09-24 20:26:25 +06:00
Main.idr allow overriding racket/chicken paths through environment variables 2019-10-28 22:44:16 -04: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.