From 468ad4837b9f5705943433efd84e8d72625880d4 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 14 Mar 2021 18:15:08 +0000 Subject: Add `pkg` field to `testing.Internal_Test` --- core/testing/testing.odin | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/testing/testing.odin') diff --git a/core/testing/testing.odin b/core/testing/testing.odin index d9d4a53a3..a431d8575 100644 --- a/core/testing/testing.odin +++ b/core/testing/testing.odin @@ -3,9 +3,12 @@ package testing import "core:fmt" import "core:io" +// IMPORTANT NOTE: Compiler requires this layout Test_Signature :: proc(^T); +// IMPORTANT NOTE: Compiler requires this layout Internal_Test :: struct { + pkg: string, name: string, p: Test_Signature, } -- cgit v1.2.3