diff --git a/tests/test_filesystem.c b/tests/test_filesystem.c index 28f58bb..5851410 100644 --- a/tests/test_filesystem.c +++ b/tests/test_filesystem.c @@ -57,6 +57,7 @@ int main() { S8_String abs_path = OS_GetAbsolutePath(&arena, read_file_path); IO_Printf("dir_path = %.*s\n", S8_Expand(dir_path)); + IO_Printf("exe_path = %.*s\n", S8_Expand(exe_path)); IO_Assert(OS_IsDir(dir_path)); IO_Assert(!OS_IsFile(dir_path)); diff --git a/tests/test_main.cpp b/tests/test_main.cpp index 49ada3b..ad16fc2 100644 --- a/tests/test_main.cpp +++ b/tests/test_main.cpp @@ -6,34 +6,22 @@ int main() { TestSimpleInsertAndIntegrity(); - IO_Printf("TestSimpleInsertAndIntegrity() - DONE\n"); TestStrings(); - IO_Printf("TestStrings() - DONE\n"); TestExclusiveArenaBackedArray(); - IO_Printf("TestExclusiveArenaBackedArray() - DONE\n"); TestRemoveForLoop(); - IO_Printf("TestRemoveForLoop() - DONE\n"); TestBasic(); - IO_Printf("TestBasic() - DONE\n"); TestReverseLoop(); - IO_Printf("TestReverseLoop() - DONE\n"); TestCopy(); - IO_Printf("TestCopy() - DONE\n"); TestBuffer(); - IO_Printf("TestBuffer() - DONE\n"); TestCreateAllocate(); - IO_Printf("TestCreateAllocate() - DONE\n"); TestBootstrap(); - IO_Printf("TestBootstrap() - DONE\n"); TestBootstrapExclusive(); - IO_Printf("TestBootstrapExclusive() - DONE\n"); - // TestBootstrapArenaClear(); - // IO_Printf("TestBootstrapArenaClear() - DONE\n"); + TestBootstrapArenaClear(); - TestClexer(); - IO_Printf("TestClexer() - DONE\n"); + // TestClexer(); + // IO_Printf("TestClexer() - DONE\n"); // Unicode iteration over codepoints using For {