mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-09-06 18:28:16 +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
10 lines
179 B
C
10 lines
179 B
C
#include "hmm_test.h"
|
|
|
|
int main()
|
|
{
|
|
int tests_failed = hmt_run_all_tests();
|
|
int coverage_failed = hmt_check_all_coverage();
|
|
|
|
return tests_failed || coverage_failed;
|
|
}
|