From 3d984d75cc626a86c10a090facce8ea156295bbf Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 5 Jan 2025 14:00:23 +0000 Subject: [PATCH] Add `#+feature dynamic-literals` to tests --- tests/core/hash/test_core_hash.odin | 1 + tests/core/hash/test_vectors_xxhash.odin | 1 + tests/core/image/test_core_image.odin | 1 + 3 files changed, 3 insertions(+) diff --git a/tests/core/hash/test_core_hash.odin b/tests/core/hash/test_core_hash.odin index c3f0bee91..adb55d2d8 100644 --- a/tests/core/hash/test_core_hash.odin +++ b/tests/core/hash/test_core_hash.odin @@ -1,3 +1,4 @@ +#+feature dynamic-literals package test_core_hash import "core:hash/xxhash" diff --git a/tests/core/hash/test_vectors_xxhash.odin b/tests/core/hash/test_vectors_xxhash.odin index f72e2699a..04e2d4f1f 100644 --- a/tests/core/hash/test_vectors_xxhash.odin +++ b/tests/core/hash/test_vectors_xxhash.odin @@ -1,4 +1,5 @@ // Hash Test Vectors +#+feature dynamic-literals package test_core_hash XXHASH_Test_Vectors :: struct #packed { diff --git a/tests/core/image/test_core_image.odin b/tests/core/image/test_core_image.odin index 899596229..8f6091481 100644 --- a/tests/core/image/test_core_image.odin +++ b/tests/core/image/test_core_image.odin @@ -7,6 +7,7 @@ A test suite for PNG, TGA, NetPBM, QOI and BMP. */ +#+feature dynamic-literals package test_core_image import "core:testing"