diff options
| author | gingerBill <bill@gingerbill.org> | 2021-03-14 18:15:08 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-03-14 18:15:08 +0000 |
| commit | 468ad4837b9f5705943433efd84e8d72625880d4 (patch) | |
| tree | edcd0cee1da651427f5414dc8ce1e35561abff0e /core/testing/testing.odin | |
| parent | 2aa588209e784274136b516224372fdd677d3e8f (diff) | |
Add `pkg` field to `testing.Internal_Test`
Diffstat (limited to 'core/testing/testing.odin')
| -rw-r--r-- | core/testing/testing.odin | 3 |
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, } |