tests: TEST_INIT -> TEST_START, TEST_PASSED -> TEST_END

This commit is contained in:
2026-02-05 20:34:29 +00:00
parent 0e6a43ec5f
commit 0b3d659f14
6 changed files with 31 additions and 31 deletions

View File

@@ -14,8 +14,8 @@
#define TEST_VERBOSE 0
#endif
#define TEST_INIT() printf("\t[%s]: Running...\n", __func__)
#define TEST_PASSED() printf("\t[%s]: Passed\n", __func__)
#define TEST_START() printf("\t[%s]: Running...\n", __func__)
#define TEST_END() printf("\t[%s]: Passed\n", __func__)
#define TEST_INFO(...) \
do \
{ \

View File

@@ -12,7 +12,7 @@
void smi_test(void)
{
TEST_INIT();
TEST_START();
// Standard old testing, checking both sides of the number line and our set
// bounds.
i64 ints[] = {
@@ -28,12 +28,12 @@ void smi_test(void)
TEST(in == out, "%ld == %ld", in, out);
}
TEST_PASSED();
TEST_END();
}
void smi_oob_test(void)
{
TEST_INIT();
TEST_START();
// These are integers that are completely out of the bounds of our standard
// tagging system due to their size. We need to use big integers for this.
i64 ints[] = {
@@ -52,12 +52,12 @@ void smi_oob_test(void)
TEST(in != out, "%ld != %ld", in, out);
}
TEST_PASSED();
TEST_END();
}
void sym_fresh_test(void)
{
TEST_INIT();
TEST_START();
sys_t system = {0};
sys_init(&system);
@@ -74,12 +74,12 @@ void sym_fresh_test(void)
}
sys_free(&system);
TEST_PASSED();
TEST_END();
}
void sym_unique_test(void)
{
TEST_INIT();
TEST_START();
sys_t system = {0};
sys_init(&system);
@@ -106,12 +106,12 @@ void sym_unique_test(void)
}
sys_free(&system);
TEST_PASSED();
TEST_END();
}
void cons_test(void)
{
TEST_INIT();
TEST_START();
sys_t system = {0};
sys_init(&system);
@@ -143,12 +143,12 @@ void cons_test(void)
}
sys_free(&system);
TEST_PASSED();
TEST_END();
}
void sys_test(void)
{
TEST_INIT();
TEST_START();
sys_t sys = {0};
sys_init(&sys);
u64 old_memory_size = sys.memory.size;
@@ -189,7 +189,7 @@ void sys_test(void)
TEST(sys.memory.size == 0, "sys_free cleans up memory (shallow check)");
TEST(sys.symtable.count == 0, "sys_free cleans up symtable (shallow check)");
TEST_PASSED();
TEST_END();
}
MAKE_TEST_SUITE(LISP_API_SUITE, "LISP API Tests",

View File

@@ -43,7 +43,7 @@ void stream_test_epilogue(void)
void stream_test_string(void)
{
TEST_INIT();
TEST_START();
sv_t test_strings[] = {
SV("hello, world!", 13),
SV("another string", 14),
@@ -79,12 +79,12 @@ void stream_test_string(void)
TEST(stream_eoc(&stream), "NULL stream is always at end of content");
stream_stop(&stream);
TEST_PASSED();
TEST_END();
}
void stream_test_file(void)
{
TEST_INIT();
TEST_START();
// Test that initialising works correctly
{
@@ -110,42 +110,42 @@ void stream_test_file(void)
}
}
TEST_PASSED();
TEST_END();
}
void stream_test_peek_next(void)
{
TEST_INIT();
TEST_START();
TODO("Not implemented");
}
void stream_test_seek(void)
{
TEST_INIT();
TEST_START();
TODO("Not implemented");
}
void stream_test_substr(void)
{
TEST_INIT();
TEST_START();
TODO("Not implemented");
}
void stream_test_till(void)
{
TEST_INIT();
TEST_START();
TODO("Not implemented");
}
void stream_test_while(void)
{
TEST_INIT();
TEST_START();
TODO("Not implemented");
}
void stream_test_line_col(void)
{
TEST_INIT();
TEST_START();
TODO("Not implemented");
}

View File

@@ -13,7 +13,7 @@
void sv_copy_test(void)
{
TEST_INIT();
TEST_START();
static_assert(ARRSIZE(unique_words) > 3, "Expected at least 3 unique words");
for (u64 i = 0; i < 3; ++i)
{

View File

@@ -10,7 +10,7 @@
void symtable_test(void)
{
TEST_INIT();
TEST_START();
sym_table_t table = {0};
sym_table_init(&table);
for (u64 i = 0; i < ARRSIZE(words); ++i)
@@ -20,7 +20,7 @@ void symtable_test(void)
ARRSIZE(unique_words));
sym_table_free(&table);
TEST_PASSED();
TEST_END();
}
MAKE_TEST_SUITE(SYMTABLE_SUITE, "Symbol Table Tests",

View File

@@ -10,7 +10,7 @@
void vec_test_concat(void)
{
TEST_INIT();
TEST_START();
sys_t system = {0};
sys_init(&system);
@@ -34,12 +34,12 @@ void vec_test_concat(void)
strlen(words_text));
sys_free(&system);
TEST_PASSED();
TEST_END();
}
void vec_test_substr(void)
{
TEST_INIT();
TEST_START();
sys_t system = {0};
sys_init(&system);
// Generating substrings
@@ -68,7 +68,7 @@ void vec_test_substr(void)
}
sys_free(&system);
TEST_PASSED();
TEST_END();
}
MAKE_TEST_SUITE(VEC_SUITE, "Vector Tests",