Updated testing page

This commit is contained in:
2023-01-16 21:00:25 +11:00
committed by GitHub
parent 5978b73619
commit 7012849c87
2 changed files with 4 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
# Testing Toy
Toy uses GitHub actions for automated testing - all of the tests are under `test/`, and can be executed by running `make test`.
Toy uses GitHub CI for comprehensive automated testing - however, all of the tests are under `test/`, and can be executed by running `make test`. Doing so on linux will attempt to use valgrind; to disable using valgrind, pass in `DISABLE_VALGRIND=true` as an environment variable.
The tests consist of a number of different situations and edge cases which have been discovered, and should probably be thoroughly tested one way or another. There are also several "-bugfix.toy" scripts which explicitly test a bug that has been encountered in one way or another.
The tests consist of a number of different situations and edge cases which have been discovered, and should probably be thoroughly tested one way or another. There are also several "-bugfix.toy" scripts which explicitly test a bug that has been encountered in one way or another. The libs that are stored in `repl/` are also tested - their tests are under `/tests/scripts/lib`; some error cases are also checked by the mustfail tests in `/test/scripts/mustfail`.
Finally, the libs that are stored in `repl/` are also tested - their tests are under `/tests/scripts/lib`.
Finally, GitHub CI has access to the option `make test-sanitized` which attempts to use memory sanitation. I don't know enough about this to offer much comentary, only that several invisible issues are monitored this way.