From df1076f7d7dfbad633a2ab3c8f50686dd4ff38b3 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 5 Feb 2026 06:17:31 +0000 Subject: [PATCH] tests: enable STREAM_SUITE --- test/main.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/main.c b/test/main.c index b5be73f..5cd0d22 100644 --- a/test/main.c +++ b/test/main.c @@ -12,15 +12,13 @@ #include "./test.h" #include "./test_lisp_api.c" +#include "./test_stream.c" #include "./test_sv.c" #include "./test_symtable.c" #include "./test_vec.c" test_suite_t SUITES[] = { - VEC_SUITE, - SV_SUITE, - SYMTABLE_SUITE, - LISP_API_SUITE, + VEC_SUITE, SV_SUITE, SYMTABLE_SUITE, STREAM_SUITE, LISP_API_SUITE, }; int main(void)