mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-09-10 04:08:17 +00:00

* Add coverage features and add it, laboriously, to everything * Fix easy tests * Add tests for != operators * Clean up test framework a little * Add documentation of coverage macros * Fix tests for mat4 to quaternion * Slightly improve formatting of coverage output * Trailing whitespace must die
17 lines
186 B
Markdown
17 lines
186 B
Markdown
# Testing
|
|
|
|
You can compile and run the tests yourself by running:
|
|
|
|
```
|
|
make
|
|
```
|
|
|
|
To run a specific test configuration, run one of:
|
|
|
|
```
|
|
make c
|
|
make c_no_sse
|
|
make cpp
|
|
make cpp_no_sse
|
|
```
|