From af962526df0f082083646d9ff8e13bff5bcbc921 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Mon, 18 Dec 2023 14:46:37 +0100 Subject: [PATCH] switch tests around --- tests/core/runtime/test_core_runtime.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/runtime/test_core_runtime.odin b/tests/core/runtime/test_core_runtime.odin index 5a57be4c3..6ec1e78d9 100644 --- a/tests/core/runtime/test_core_runtime.odin +++ b/tests/core/runtime/test_core_runtime.odin @@ -28,8 +28,8 @@ when ODIN_TEST { main :: proc() { t := testing.T{} - test_temp_allocator_alignment_boundary(&t) test_temp_allocator_big_alloc_and_alignment(&t) + test_temp_allocator_alignment_boundary(&t) fmt.printf("%v/%v tests successful.\n", TEST_count - TEST_fail, TEST_count) if TEST_fail > 0 {