summaryrefslogtreecommitdiff
path: root/src/test/honey-test.h
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-06-16 22:20:56 -0500
committersanine <sanine.not@pm.me>2022-06-16 22:20:56 -0500
commit2cdda7ca1276b7f8cc3c235262aa5d9a1204d954 (patch)
tree608806157c550da269d93e56fd7d5aca41a87573 /src/test/honey-test.h
parent38fc53f3ddb1e27457307dc8ac34c0d5e535a9c0 (diff)
add initial window framework
Diffstat (limited to 'src/test/honey-test.h')
-rw-r--r--src/test/honey-test.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/honey-test.h b/src/test/honey-test.h
index ac79d8a..a31bcff 100644
--- a/src/test/honey-test.h
+++ b/src/test/honey-test.h
@@ -23,8 +23,10 @@
void suite_logging();
+void suite_window();
#define RUN_TESTS() \
- lily_run_suite(suite_logging);
+ lily_run_suite(suite_logging); \
+ lily_run_suite(suite_window); \
#endif