mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 16:51:51 +03:00
75032a7164
* Emit warning for fixities with no export modifiers This is to help update all the existing code to program with explicit fixity export directives in preparation for the behavioral change where they will become private by default. |
||
---|---|---|
.. | ||
allbackends | ||
allschemes | ||
base | ||
chez | ||
codegen | ||
contrib | ||
gambit/bitops001 | ||
ideMode | ||
idris2 | ||
node | ||
prelude | ||
racket | ||
refc | ||
templates | ||
ttimp | ||
typedd-book | ||
vmcode/basic001 | ||
Main.idr | ||
Makefile | ||
README.md | ||
tests.ipkg | ||
testutils.sh |
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 forTTImp
.make test only=idris2/basic001
will run a specific test.
Templates for common test instances can be found in the templates
folder.
There is no defined naming convention for adding tests, but the pattern has been:
- a sub-directory in the relevant test section (
idris2
,refc
, etc.) - with a descriptive name followed by a 3-digit number (e.g.
envflags001
is the first test checking the environment flags functions) - containing:
- an Idris file importing the relevant modules and containing the test function(s)
- a
run
file which is a shell script that runs the test (see the existing tests for examples for this) - an
expected
file containing the expected output