aboutsummaryrefslogtreecommitdiff
path: root/core/testing/testing.odin
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2024-08-11 23:34:41 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-08-12 14:16:22 -0400
commit0af025d056ba6d92d912596a97cd148a30acf793 (patch)
treee3208811130876083dfdd9e3822c9aca82225dfe /core/testing/testing.odin
parentf42a22369e52c2ef8228269bf2340efbb6167e23 (diff)
Add explicit copyright info to `core:testing`
Diffstat (limited to 'core/testing/testing.odin')
-rw-r--r--core/testing/testing.odin11
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
+}