Add explicit copyright info to core:testing

This commit is contained in:
Feoramund
2024-08-12 14:16:22 -04:00
parent f42a22369e
commit 0af025d056
8 changed files with 68 additions and 1 deletions
+10 -1
View File
@@ -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,
})
}
}