Add core.cpp, testing changes

This commit is contained in:
Krzosa Karol
2024-01-14 10:22:39 +01:00
parent c375cdf04f
commit 37eed81ea5
7 changed files with 77 additions and 126 deletions

View File

@@ -1,4 +1,3 @@
#include "../core_library/core.c"
void TestExclusiveArenaBackedArray() {
MA_Scratch scratch;
MA_Arena ex = MA_Create();
@@ -118,12 +117,3 @@ void TestCopy() {
a.dealloc();
}
int main() {
TestExclusiveArenaBackedArray();
TestRemoveForLoop();
TestBasic();
TestReverseLoop();
TestCopy();
return 0;
}