2022-04-16 11:00:32 +00:00
|
|
|
Thread_Result
|
|
|
|
thread_proc(Thread_Data* td)
|
2022-03-22 18:13:06 +00:00
|
|
|
{
|
2022-03-27 10:47:18 +00:00
|
|
|
//Sleep(100);
|
2022-04-16 11:00:32 +00:00
|
|
|
return (Thread_Result){};
|
2022-03-22 18:13:06 +00:00
|
|
|
}
|
|
|
|
|
2022-04-06 18:29:32 +00:00
|
|
|
void
|
|
|
|
memory_allocator_tests(Allocator* a, bool run_free_tests)
|
|
|
|
{
|
|
|
|
// TestGroup("Allocator Push")
|
|
|
|
{
|
2022-05-25 12:30:20 +00:00
|
|
|
for (uint32_t i = 0; i < 3; i++)
|
2022-04-06 18:29:32 +00:00
|
|
|
{
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t* buf0 = allocator_alloc(a, 256);
|
2022-04-06 18:29:32 +00:00
|
|
|
buf0[0] = 200;
|
|
|
|
buf0[255] = 199;
|
|
|
|
assert(buf0[0] == 200);
|
|
|
|
assert(buf0[255] == 199);
|
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t* buf1 = allocator_alloc(a, 256);
|
2022-04-06 18:29:32 +00:00
|
|
|
buf1[0] = 201;
|
|
|
|
buf1[255] = 202;
|
|
|
|
assert(buf1 >= (buf0 + 256));
|
|
|
|
assert(buf0[0] == 200);
|
|
|
|
assert(buf0[255] == 199);
|
|
|
|
assert(buf1[0] == 201);
|
|
|
|
assert(buf1[255] == 202);
|
|
|
|
|
|
|
|
allocator_clear(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestGroup("Allocator Free")
|
|
|
|
if (run_free_tests)
|
|
|
|
{
|
2022-05-25 12:30:20 +00:00
|
|
|
for (uint32_t i = 0; i < 3; i++)
|
2022-04-06 18:29:32 +00:00
|
|
|
{
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t* buf0 = allocator_alloc(a, KB(4));
|
|
|
|
uint8_t* buf1 = allocator_alloc(a, KB(4));
|
|
|
|
uint8_t* buf2 = allocator_alloc(a, KB(4));
|
|
|
|
uint8_t* buf3 = allocator_alloc(a, KB(4));
|
|
|
|
uint8_t* buf4 = allocator_alloc(a, KB(4));
|
2022-04-06 18:29:32 +00:00
|
|
|
assert((buf1 - buf0) >= KB(4));
|
|
|
|
assert((buf2 - buf0) >= KB(8));
|
|
|
|
assert((buf3 - buf0) >= KB(12));
|
|
|
|
assert((buf4 - buf0) >= KB(16));
|
|
|
|
|
|
|
|
allocator_free(a, buf1, KB(4));
|
|
|
|
allocator_free(a, buf2, KB(4));
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t* buf5 = allocator_alloc(a, KB(7));
|
2022-04-06 18:29:32 +00:00
|
|
|
// buf5 should get put in the place of buf1 since buf1 and 2 get
|
|
|
|
// merged
|
|
|
|
assert(buf5 == buf1);
|
|
|
|
|
|
|
|
allocator_free(a, buf4, KB(4));
|
|
|
|
allocator_free(a, buf3, KB(4));
|
|
|
|
allocator_free(a, buf0, KB(4));
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t* buf6 = allocator_alloc(a, KB(4));
|
2022-04-06 18:29:32 +00:00
|
|
|
assert(buf0 == buf6);
|
|
|
|
|
|
|
|
allocator_clear(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
memory_tests()
|
|
|
|
{
|
|
|
|
// TestGroup("Platform Allocation")
|
|
|
|
{
|
2022-04-12 05:53:32 +00:00
|
|
|
u64 size = GB(32);
|
|
|
|
#if defined(PLATFORM_wasm)
|
|
|
|
size = KB(4);
|
2022-05-25 12:30:20 +00:00
|
|
|
#elif defined(PLATFORM_raspi)
|
|
|
|
size = KB(32);
|
2022-04-12 05:53:32 +00:00
|
|
|
#endif
|
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t* base = os_mem_reserve(size);
|
2022-04-16 11:00:32 +00:00
|
|
|
os_mem_commit(base, KB(4));
|
2022-04-06 18:29:32 +00:00
|
|
|
base[4095] = 200;
|
|
|
|
assert(base[4095] == 200);
|
2022-04-16 11:00:32 +00:00
|
|
|
os_mem_commit(base + KB(4), KB(4));
|
2022-04-06 18:29:32 +00:00
|
|
|
base[5000] = 200;
|
|
|
|
assert(base[5000] == 200);
|
2022-04-16 11:00:32 +00:00
|
|
|
os_mem_decommit(base, KB(8));
|
2022-05-25 12:30:20 +00:00
|
|
|
os_mem_release(base, size);
|
2022-04-06 18:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Allocator* bump = bump_allocator_create_reserve(KB(32));
|
|
|
|
memory_allocator_tests(bump, false);
|
|
|
|
allocator_destroy(bump);
|
|
|
|
|
2022-04-12 05:53:32 +00:00
|
|
|
Allocator* paged = paged_allocator_create_reserve(KB(32), KB(4));
|
2022-04-06 18:29:32 +00:00
|
|
|
memory_allocator_tests(paged, true);
|
|
|
|
allocator_destroy(paged);
|
|
|
|
}
|
|
|
|
|
2022-04-12 05:53:32 +00:00
|
|
|
enum test_flags
|
|
|
|
{
|
|
|
|
TestNone = 0,
|
|
|
|
Test1 = 1,
|
|
|
|
Test2 = 2,
|
|
|
|
Test3 = 4,
|
|
|
|
Test4 = 8,
|
|
|
|
};
|
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
static void
|
2022-03-22 18:13:06 +00:00
|
|
|
run_tests()
|
|
|
|
{
|
2022-04-12 05:53:32 +00:00
|
|
|
scratch_get(scratch);
|
|
|
|
|
|
|
|
// basic
|
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t b = TestNone;
|
2022-04-12 05:53:32 +00:00
|
|
|
assert(!has_flag(b, TestNone));
|
|
|
|
assert(!has_flag(b, Test1));
|
|
|
|
add_flag(b, Test1);
|
|
|
|
assert(has_flag(b, Test1));
|
|
|
|
assert(!has_flag(b, Test2));
|
|
|
|
add_flag(b, Test2);
|
|
|
|
assert(has_flag(b, Test1));
|
|
|
|
assert(has_flag(b, Test2));
|
|
|
|
assert(has_flag(b, Test1 | Test2));
|
|
|
|
add_flag(b, Test4);
|
|
|
|
assert(has_flag(b, Test1));
|
|
|
|
assert(has_flag(b, Test2));
|
|
|
|
assert(has_flag(b, Test4));
|
|
|
|
assert(has_flag(b, Test1 | Test2 | Test4));
|
|
|
|
assert(!has_flag(b, Test3));
|
|
|
|
rem_flag(b, Test2);
|
|
|
|
assert(has_flag(b, Test1));
|
|
|
|
assert(!has_flag(b, Test2));
|
|
|
|
assert(has_flag(b, Test4));
|
|
|
|
assert(has_flag(b, Test1 | Test4));
|
|
|
|
assert(!has_flag(b, Test3));
|
2022-05-25 12:30:20 +00:00
|
|
|
|
2022-03-27 10:47:18 +00:00
|
|
|
// memory tests
|
2022-05-25 12:30:20 +00:00
|
|
|
uint8_t* r0 = os_mem_reserve(1024);
|
|
|
|
uint8_t* r1 = os_mem_commit(r0, 512);
|
|
|
|
for (uint32_t i = 0; i < 512; i++) r1[i] = i;
|
|
|
|
os_mem_decommit(r1, 512);
|
|
|
|
os_mem_release(r0, 1024);
|
|
|
|
// r0[256] = 100; // this should break if you uncomment
|
|
|
|
|
|
|
|
uint8_t* a0 = allocator_alloc_array(scratch.a, uint8_t, 32);
|
|
|
|
uint8_t* a1 = allocator_alloc_array(scratch.a, uint8_t, 32);
|
2022-03-27 10:47:18 +00:00
|
|
|
assert(a0 != a1);
|
|
|
|
assert((a0 + 32) <= a1);
|
2022-05-25 12:30:20 +00:00
|
|
|
|
|
|
|
a1[0] = 25;
|
2022-03-27 10:47:18 +00:00
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
for (uint32_t i = 0; i < 32; i++)
|
2022-03-27 10:47:18 +00:00
|
|
|
{
|
2022-05-25 12:30:20 +00:00
|
|
|
a0[i] = (uint8_t)i;
|
|
|
|
a1[i] = (uint8_t)(100 + i);
|
2022-03-27 10:47:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
for (uint32_t i = 0; i < 32; i++)
|
2022-03-27 10:47:18 +00:00
|
|
|
{
|
|
|
|
assert(a0[i] == i);
|
|
|
|
assert(a1[i] == (100 + i));
|
|
|
|
}
|
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
|
2022-04-16 11:00:32 +00:00
|
|
|
assert(round_up_to_pow2_u32(1) == 1);
|
|
|
|
assert(round_up_to_pow2_u32(3) == 4);
|
|
|
|
assert(round_up_to_pow2_u32(29) == 32);
|
|
|
|
assert(round_up_to_pow2_u32(32) == 32);
|
|
|
|
assert(round_up_to_pow2_u32(120) == 128);
|
2022-04-12 05:53:32 +00:00
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
|
2022-04-06 18:29:32 +00:00
|
|
|
memory_tests();
|
2022-04-12 05:53:32 +00:00
|
|
|
bsp_tests();
|
2022-04-06 18:29:32 +00:00
|
|
|
|
2022-03-27 10:47:18 +00:00
|
|
|
#if defined(PLATFORM_wasm)
|
|
|
|
// NOTE(PS): the tests below this point don't make sense on a web assembly
|
|
|
|
// platform
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2022-03-22 18:13:06 +00:00
|
|
|
// testing strings and exe path
|
2022-04-16 11:00:32 +00:00
|
|
|
String exe_file_path = os_get_exe_path(scratch.a);
|
2022-03-22 18:13:06 +00:00
|
|
|
assert(exe_file_path.str != 0);
|
|
|
|
u64 run_tree_start = string_find_substring(exe_file_path, lit_str("run_tree"), 0, StringMatch_FindLast);
|
|
|
|
u64 run_tree_end = run_tree_start + lit_str("run_tree").len;
|
|
|
|
assert(run_tree_start < exe_file_path.len);
|
|
|
|
String run_tree_path = string_get_prefix(exe_file_path, run_tree_end);
|
2022-04-12 05:53:32 +00:00
|
|
|
String run_tree_path_nullterm = string_copy(run_tree_path, scratch.a);
|
2022-03-22 18:13:06 +00:00
|
|
|
assert(run_tree_path_nullterm.len > 0);
|
2022-04-16 11:00:32 +00:00
|
|
|
assert(os_pwd_set(run_tree_path_nullterm));
|
2022-03-22 18:13:06 +00:00
|
|
|
|
|
|
|
// testing file io
|
2022-04-16 11:00:32 +00:00
|
|
|
File_Handle f = os_file_open(lit_str("text.txt"), FileAccess_Read | FileAccess_Write, FileCreate_OpenExisting);
|
|
|
|
File_Info i = os_file_get_info(f, scratch.a);
|
2022-03-22 18:13:06 +00:00
|
|
|
|
2022-04-16 11:00:32 +00:00
|
|
|
Data d0 = os_file_read_all(f, scratch.a);
|
2022-03-22 18:13:06 +00:00
|
|
|
assert(d0.size > 0);
|
|
|
|
|
|
|
|
String s = lit_str("foooooooooobbbbbbaaaarrrrrr");
|
|
|
|
Data d1 = { s.str, s.len };
|
2022-04-16 11:00:32 +00:00
|
|
|
bool r = os_file_write_all(f, d1);
|
2022-03-22 18:13:06 +00:00
|
|
|
assert(r);
|
|
|
|
|
2022-03-27 10:47:18 +00:00
|
|
|
#if 0
|
|
|
|
// TODO(PS): these were causing startup problems but you weren't focusing on
|
|
|
|
// threads/ When you build something multithreaded come back here and
|
|
|
|
// make tests that actually work
|
|
|
|
|
2022-03-22 18:13:06 +00:00
|
|
|
// testing threads
|
|
|
|
Platform_Thread_Handle threads[8];
|
2022-05-25 12:30:20 +00:00
|
|
|
for (uint32_t j = 0; j < 8; j++)
|
2022-03-22 18:13:06 +00:00
|
|
|
{
|
|
|
|
threads[j] = platform_thread_begin(thread_proc, 0);
|
|
|
|
}
|
2022-03-27 10:47:18 +00:00
|
|
|
|
2022-05-25 12:30:20 +00:00
|
|
|
for (uint32_t j = 0; j < 8; j++)
|
2022-03-22 18:13:06 +00:00
|
|
|
{
|
|
|
|
platform_thread_end(threads[j]);
|
|
|
|
}
|
2022-03-27 10:47:18 +00:00
|
|
|
#endif
|
2022-04-16 11:00:32 +00:00
|
|
|
scratch_release(scratch);
|
2022-03-22 18:13:06 +00:00
|
|
|
}
|