aboutsummaryrefslogtreecommitdiff
path: root/linmath_test.c
diff options
context:
space:
mode:
authordatenwolf <code+github@datenwolf.net>2021-01-06 11:28:51 +0100
committerGitHub <noreply@github.com>2021-01-06 11:28:51 +0100
commit05387571f57224f8cbc2b390b423dab6b9158988 (patch)
treeed88a346f022c7f01dfbb6d44f2d242f52857e08 /linmath_test.c
parent3db0026ffe2c3b57abb71e2793c61ec363091359 (diff)
parentffcb15d3f25ebc25ee0dab68fadfe5e88e2b755f (diff)
downloadlinmath.h-05387571f57224f8cbc2b390b423dab6b9158988.tar.gz
linmath.h-05387571f57224f8cbc2b390b423dab6b9158988.tar.bz2
Merge pull request #42 from dizcza/tests
Added tests, fixed a bug, and more
Diffstat (limited to 'linmath_test.c')
-rw-r--r--linmath_test.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/linmath_test.c b/linmath_test.c
new file mode 100644
index 0000000..d7ce1fa
--- /dev/null
+++ b/linmath_test.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+#include "linmath_test.h"
+
+int main() {
+ linmath_test_run_all();
+ printf("linmath tests passed\n");
+ return 0;
+}