소스 검색

switch tests around

Laytan Laats 1 년 전
부모
커밋
af962526df
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/core/runtime/test_core_runtime.odin

+ 1 - 1
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 {