aboutsummaryrefslogtreecommitdiff
path: root/core/testing/testing.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-03-14 18:15:08 +0000
committergingerBill <bill@gingerbill.org>2021-03-14 18:15:08 +0000
commit468ad4837b9f5705943433efd84e8d72625880d4 (patch)
treeedcd0cee1da651427f5414dc8ce1e35561abff0e /core/testing/testing.odin
parent2aa588209e784274136b516224372fdd677d3e8f (diff)
Add `pkg` field to `testing.Internal_Test`
Diffstat (limited to 'core/testing/testing.odin')
-rw-r--r--core/testing/testing.odin3
1 files changed, 3 insertions, 0 deletions
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,
}