mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Add explicit copyright info to core:testing
This commit is contained in:
@@ -1,6 +1,14 @@
|
|||||||
//+private
|
//+private
|
||||||
package testing
|
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 "base:runtime"
|
||||||
import "core:sync/chan"
|
import "core:sync/chan"
|
||||||
import "core:time"
|
import "core:time"
|
||||||
|
|||||||
@@ -1,6 +1,15 @@
|
|||||||
//+private
|
//+private
|
||||||
package testing
|
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 "base:runtime"
|
||||||
import "core:fmt"
|
import "core:fmt"
|
||||||
import pkg_log "core:log"
|
import pkg_log "core:log"
|
||||||
|
|||||||
@@ -1,6 +1,14 @@
|
|||||||
//+private
|
//+private
|
||||||
package testing
|
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 "base:runtime"
|
||||||
import "core:encoding/ansi"
|
import "core:encoding/ansi"
|
||||||
import "core:fmt"
|
import "core:fmt"
|
||||||
|
|||||||
@@ -1,6 +1,15 @@
|
|||||||
//+private
|
//+private
|
||||||
package testing
|
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:intrinsics"
|
||||||
import "base:runtime"
|
import "base:runtime"
|
||||||
import "core:bytes"
|
import "core:bytes"
|
||||||
|
|||||||
@@ -1,6 +1,14 @@
|
|||||||
//+private
|
//+private
|
||||||
package testing
|
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 "base:runtime"
|
||||||
import pkg_log "core:log"
|
import pkg_log "core:log"
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,14 @@
|
|||||||
//+build windows, linux, darwin, freebsd, openbsd, netbsd, haiku
|
//+build windows, linux, darwin, freebsd, openbsd, netbsd, haiku
|
||||||
package testing
|
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 "base:intrinsics"
|
||||||
import "core:c/libc"
|
import "core:c/libc"
|
||||||
import "core:encoding/ansi"
|
import "core:encoding/ansi"
|
||||||
|
|||||||
@@ -2,6 +2,14 @@
|
|||||||
//+build !windows !linux !darwin !freebsd !openbsd !netbsd !haiku
|
//+build !windows !linux !darwin !freebsd !openbsd !netbsd !haiku
|
||||||
package testing
|
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() {
|
_setup_signal_handler :: proc() {
|
||||||
// Do nothing.
|
// Do nothing.
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,14 @@
|
|||||||
package testing
|
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:intrinsics"
|
||||||
import "base:runtime"
|
import "base:runtime"
|
||||||
import pkg_log "core:log"
|
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),
|
at_time = time.time_add(time.now(), duration),
|
||||||
location = loc,
|
location = loc,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user