diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-11 23:34:41 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-12 14:16:22 -0400 |
| commit | 0af025d056ba6d92d912596a97cd148a30acf793 (patch) | |
| tree | e3208811130876083dfdd9e3822c9aca82225dfe /core/testing/testing.odin | |
| parent | f42a22369e52c2ef8228269bf2340efbb6167e23 (diff) | |
Add explicit copyright info to `core:testing`
Diffstat (limited to 'core/testing/testing.odin')
| -rw-r--r-- | core/testing/testing.odin | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/testing/testing.odin b/core/testing/testing.odin index ea779b8f3..342f5d643 100644 --- a/core/testing/testing.odin +++ b/core/testing/testing.odin @@ -1,5 +1,14 @@ package testing +/* + (c) Copyright 2024 Feoramund <rune@swevencraft.org>. + Made available under Odin's BSD-3 license. + + List of contributors: + Ginger Bill: Initial implementation. + Feoramund: Total rewrite. +*/ + import "base:intrinsics" import "base:runtime" import pkg_log "core:log" @@ -162,4 +171,4 @@ set_fail_timeout :: proc(t: ^T, duration: time.Duration, loc := #caller_location at_time = time.time_add(time.now(), duration), location = loc, }) -}
\ No newline at end of file +} |