Idris2/tests
André Videla 75032a7164
Emit warning for fixities with no export modifiers (#3234)
* 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.
2024-04-03 15:41:57 +01:00
..
allbackends [ fix ] Support waiting for popen2-created processes 2023-12-19 23:03:31 +03:00
allschemes [ base ] Add bindings for ieee Double number consts (#3116) 2023-11-09 14:01:40 +00:00
base Emit warning for fixities with no export modifiers (#3234) 2024-04-03 15:41:57 +01:00
chez Remove use of deprecated getByte function (#3190) 2024-01-14 11:26:51 -06:00
codegen [ test ] fix clean_names function in testutils.sh (#3227) 2024-03-08 10:15:27 -06:00
contrib [ test ] Add tests for GetOpt 2023-12-30 14:22:51 -06:00
gambit/bitops001 Add testing utilities script 2023-09-07 14:57:22 +01:00
ideMode Emit warning for fixities with no export modifiers (#3234) 2024-04-03 15:41:57 +01:00
idris2 Emit warning for fixities with no export modifiers (#3234) 2024-04-03 15:41:57 +01:00
node cleanup tests 2024-02-24 12:28:10 +00:00
prelude [ prelude ] the is linear in its input (#3239) 2024-03-27 14:09:14 +00:00
racket [ fix #3103, #3104 ] Disable broken tests 2023-11-29 17:01:26 +00:00
refc [RefC] Unbox small integers. (#3181) 2024-03-21 07:32:37 -05:00
templates Add testing utilities script 2023-09-07 14:57:22 +01:00
ttimp Add testing utilities script 2023-09-07 14:57:22 +01:00
typedd-book Emit warning for fixities with no export modifiers (#3234) 2024-04-03 15:41:57 +01:00
vmcode/basic001 Add testing utilities script 2023-09-07 14:57:22 +01:00
Main.idr add test file 2024-02-24 12:28:10 +00:00
Makefile Separate support derivation (and small related tweaks to the Makefile) (#3172) 2023-12-27 08:14:03 -06:00
README.md [ re #2649 ] Describe test naming pattern 2022-11-11 09:33:09 +01:00
tests.ipkg Set PREFIX for tests 2021-04-19 11:23:58 +01:00
testutils.sh [fix] Package Search Paths (#3214) 2024-03-09 13:53:23 -06: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.

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