From 0af025d056ba6d92d912596a97cd148a30acf793 Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Sun, 11 Aug 2024 23:34:41 -0400 Subject: [PATCH] Add explicit copyright info to `core:testing` --- core/testing/events.odin | 8 ++++++++ core/testing/logging.odin | 9 +++++++++ core/testing/reporting.odin | 8 ++++++++ core/testing/runner.odin | 9 +++++++++ core/testing/signal_handler.odin | 8 ++++++++ core/testing/signal_handler_libc.odin | 8 ++++++++ core/testing/signal_handler_other.odin | 8 ++++++++ core/testing/testing.odin | 11 ++++++++++- 8 files changed, 68 insertions(+), 1 deletion(-) 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 . + 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 . + 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 . + 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 . + 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 . + 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 . + 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 . + 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 . + 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 +}