mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
34 lines
581 B
Odin
34 lines
581 B
Odin
#+private
|
|
#+build !windows
|
|
#+build !linux
|
|
#+build !darwin
|
|
#+build !freebsd
|
|
#+build !openbsd
|
|
#+build !netbsd
|
|
#+build !haiku
|
|
package testing
|
|
|
|
/*
|
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
|
Made available under Odin's license.
|
|
|
|
List of contributors:
|
|
Feoramund: Total rewrite.
|
|
*/
|
|
|
|
_setup_signal_handler :: proc() {
|
|
// Do nothing.
|
|
}
|
|
|
|
_setup_task_signal_handler :: proc(test_index: int) {
|
|
// Do nothing.
|
|
}
|
|
|
|
_should_stop_runner :: proc() -> bool {
|
|
return false
|
|
}
|
|
|
|
_should_stop_test :: proc() -> (test_index: int, reason: Stop_Reason, ok: bool) {
|
|
return 0, {}, false
|
|
}
|