aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Cunningham <cc@local.lan>2025-03-07 23:05:12 -0800
committerChristian Cunningham <cc@local.lan>2025-03-07 23:05:12 -0800
commitcce115efbcea123b55e74a81979273681f17718f (patch)
tree075739eb47cf62fd59ea92e988d0d7d033eef771 /src
parentae5dfc5830a9d6ec34c838558b60e5a84fc11c6b (diff)
Test suite start
Diffstat (limited to 'src')
-rw-r--r--src/test/test.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/test.c b/src/test/test.c
new file mode 100644
index 0000000..95b4154
--- /dev/null
+++ b/src/test/test.c
@@ -0,0 +1,13 @@
+#include <test/lib/color.h>
+
+int main()
+{
+ bool_t all_success = TRUE;
+ // lib/color.c Test
+ all_success &= TEST_lib_color();
+
+ if (all_success == TRUE) {
+ return 0;
+ }
+ return 1;
+}