diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2025-08-26 13:03:26 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2025-08-26 13:03:26 +0200 |
| commit | ce0cf7076cf0353b91b4fa73953fc6db01e31c0b (patch) | |
| tree | 4add547052e877fc70abde0a5aa3a19019b0c3ef /tests | |
| parent | 83a78d5d28a02de0d224e5f0f0ba5ba2a17a7467 (diff) | |
Add missing test attr and don't zero memory when reserve already did
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/runtime/test_core_runtime.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/core/runtime/test_core_runtime.odin b/tests/core/runtime/test_core_runtime.odin index 6c3b489d7..881b5f41a 100644 --- a/tests/core/runtime/test_core_runtime.odin +++ b/tests/core/runtime/test_core_runtime.odin @@ -213,6 +213,7 @@ test_soa_array_resize :: proc(t: ^testing.T) { testing.expect_value(t, array[2], V{0, 0}) } +@(test) test_soa_make_len :: proc(t: ^testing.T) { array, err := make(#soa[dynamic][2]int, 2) |