Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 759 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 759 Bytes

Testing

Tests can be run from the project's root directory.

tests/run.sh

This will run all tests using the system's default compiler.

If Clang is your compiler then you will also be provided with memory address sanitizing and code coverage.

If you need Valgrind you can provide VALGRIND=1.

Examples

tests/run.sh                   # defaults
CC=clang-17 tests/run.sh       # use alternative compiler
CC=emcc tests/run.sh           # test WebAssembly using Emscripten
CC="zig cc" tests/run.sh       # test with the Zig C compiler
CFLAGS="-O3" tests/run.sh      # use custom cflags
NOSANS=1 tests/run.sh          # do not use sanitizers
VALGRIND=1 tests/run.sh        # use valgrind on all tests