aboutsummaryrefslogtreecommitdiff
path: root/core/testing
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
parentf42a22369e52c2ef8228269bf2340efbb6167e23 (diff)
Add explicit copyright info to `core:testing`
Diffstat (limited to 'core/testing')
-rw-r--r--core/testing/events.odin8
-rw-r--r--core/testing/logging.odin9
-rw-r--r--core/testing/reporting.odin8
-rw-r--r--core/testing/runner.odin9
-rw-r--r--core/testing/signal_handler.odin8
-rw-r--r--core/testing/signal_handler_libc.odin8
-rw-r--r--core/testing/signal_handler_other.odin8
-rw-r--r--core/testing/testing.odin11
8 files changed, 68 insertions, 1 deletions
diff --git a/core/testing/events.odin b/core/testing/events.odin
index bab35aaad..c9c4b0271 100644
--- a/core/testing/events.odin
+++ b/core/testing/events.odin
@@ -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"
diff --git a/core/testing/logging.odin b/core/testing/logging.odin
index f1e75d33c..d0cb79c20 100644
--- a/core/testing/logging.odin
+++ b/core/testing/logging.odin
@@ -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"
diff --git a/core/testing/reporting.odin b/core/testing/reporting.odin
index 92e144ccc..81f1d0646 100644
--- a/core/testing/reporting.odin
+++ b/core/testing/reporting.odin
@@ -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"
diff --git a/core/testing/runner.odin b/core/testing/runner.odin
index abe1d5984..82cd58c75 100644
--- a/core/testing/runner.odin
+++ b/core/testing/runner.odin
@@ -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"
diff --git a/core/testing/signal_handler.odin b/core/testing/signal_handler.odin
index 0b06852ce..9e38d6341 100644
--- a/core/testing/signal_handler.odin
+++ b/core/testing/signal_handler.odin
@@ -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"
diff --git a/core/testing/signal_handler_libc.odin b/core/testing/signal_handler_libc.odin
index d89d84fae..27d1a0735 100644
--- a/core/testing/signal_handler_libc.odin
+++ b/core/testing/signal_handler_libc.odin
@@ -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"
diff --git a/core/testing/signal_handler_other.odin b/core/testing/signal_handler_other.odin
index 04981f5af..6f39205c7 100644
--- a/core/testing/signal_handler_other.odin
+++ b/core/testing/signal_handler_other.odin
@@ -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.
}
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
+}