소스 검색

Add `#+feature dynamic-literals` to tests

gingerBill 8 달 전
부모
커밋
3d984d75cc
3개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      tests/core/hash/test_core_hash.odin
  2. 1 0
      tests/core/hash/test_vectors_xxhash.odin
  3. 1 0
      tests/core/image/test_core_image.odin

+ 1 - 0
tests/core/hash/test_core_hash.odin

@@ -1,3 +1,4 @@
+#+feature dynamic-literals
 package test_core_hash
 
 import "core:hash/xxhash"

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

+ 1 - 0
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"