From 275536b36657744d802866c060654e2b5cd5a5f8 Mon Sep 17 00:00:00 2001 From: sanine Date: Thu, 18 Aug 2022 22:46:40 -0500 Subject: implement working windows --- src/test/honey-test.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/test/honey-test.h') diff --git a/src/test/honey-test.h b/src/test/honey-test.h index 5ac5b8f..87eb5e6 100644 --- a/src/test/honey-test.h +++ b/src/test/honey-test.h @@ -29,10 +29,11 @@ void suite_logging(); +void suite_gl(); void suite_window(); #define RUN_TESTS() \ lily_run_suite(suite_logging); \ - lily_run_suite(suite_window); \ + lily_run_suite(suite_gl); \ #endif -- cgit v1.2.1 From 8b9b325b092b7157996cfbcdd7ce38f9e876fff8 Mon Sep 17 00:00:00 2001 From: sanine Date: Sat, 20 Aug 2022 15:37:04 -0500 Subject: fix bug in gl.bufferData and add error checking --- src/test/honey-test.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/test/honey-test.h') diff --git a/src/test/honey-test.h b/src/test/honey-test.h index 87eb5e6..30730d5 100644 --- a/src/test/honey-test.h +++ b/src/test/honey-test.h @@ -35,5 +35,6 @@ void suite_window(); #define RUN_TESTS() \ lily_run_suite(suite_logging); \ lily_run_suite(suite_gl); \ + lily_run_suite(suite_window); \ #endif -- cgit v1.2.1 From 1f75a21851b0a0bd4bc766c458e67721dd37c9fd Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 22 Aug 2022 21:37:12 -0500 Subject: add append_table() --- src/test/honey-test.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/test/honey-test.h') diff --git a/src/test/honey-test.h b/src/test/honey-test.h index 30730d5..03218a4 100644 --- a/src/test/honey-test.h +++ b/src/test/honey-test.h @@ -31,10 +31,12 @@ void suite_logging(); void suite_gl(); void suite_window(); +void suite_util(); #define RUN_TESTS() \ lily_run_suite(suite_logging); \ lily_run_suite(suite_gl); \ lily_run_suite(suite_window); \ + lily_run_suite(suite_util); \ #endif -- cgit v1.2.1