Add explicit copyright info to core:testing

This commit is contained in:
Feoramund
2024-08-11 23:34:41 -04:00
parent f42a22369e
commit 0af025d056
8 changed files with 68 additions and 1 deletions

View File

@@ -1,6 +1,14 @@
//+private
package testing
/*
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
Made available under Odin's BSD-3 license.
List of contributors:
Feoramund: Total rewrite.
*/
import "base:runtime"
import "core:sync/chan"
import "core:time"

View File

@@ -1,6 +1,15 @@
//+private
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:runtime"
import "core:fmt"
import pkg_log "core:log"

View File

@@ -1,6 +1,14 @@
//+private
package testing
/*
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
Made available under Odin's BSD-3 license.
List of contributors:
Feoramund: Total rewrite.
*/
import "base:runtime"
import "core:encoding/ansi"
import "core:fmt"

View File

@@ -1,6 +1,15 @@
//+private
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 "core:bytes"

View File

@@ -1,6 +1,14 @@
//+private
package testing
/*
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
Made available under Odin's BSD-3 license.
List of contributors:
Feoramund: Total rewrite.
*/
import "base:runtime"
import pkg_log "core:log"

View File

@@ -2,6 +2,14 @@
//+build windows, linux, darwin, freebsd, openbsd, netbsd, haiku
package testing
/*
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
Made available under Odin's BSD-3 license.
List of contributors:
Feoramund: Total rewrite.
*/
import "base:intrinsics"
import "core:c/libc"
import "core:encoding/ansi"

View File

@@ -2,6 +2,14 @@
//+build !windows !linux !darwin !freebsd !openbsd !netbsd !haiku
package testing
/*
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
Made available under Odin's BSD-3 license.
List of contributors:
Feoramund: Total rewrite.
*/
_setup_signal_handler :: proc() {
// Do nothing.
}

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,
})
}
}