Fix more procedure to be contextless

This commit is contained in:
gingerBill
2025-08-08 12:33:34 +01:00
parent d3f649d244
commit d381d0ece4
4 changed files with 5 additions and 5 deletions

View File

@@ -17,7 +17,7 @@ Custom_Data :: struct {
}
@(init)
init_custom_type_setter :: proc() {
init_custom_type_setter :: proc "contextless" () {
// NOTE: This is done here so it can be out of the flow of the
// multi-threaded test runner, to prevent any data races that could be
// reported by using `-sanitize:thread`.

View File

@@ -2,10 +2,10 @@ package tests_core
import rlibc "core:c/libc"
@(init)
@(init="contextless")
download_assets :: proc() {
if rlibc.system("python3 " + ODIN_ROOT + "tests/core/download_assets.py " + ODIN_ROOT + "tests/core/assets") != 0 {
panic("downloading test assets failed!")
panic_contextless("downloading test assets failed!")
}
}