aboutsummaryrefslogtreecommitdiff
path: root/tests/core/normal.odin
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-08-08 12:33:34 +0100
committergingerBill <gingerBill@users.noreply.github.com>2025-08-08 12:33:34 +0100
commitd381d0ece4b9cd5fcf454fbd7ca79969d2b76cb8 (patch)
tree46744c069541f90aa965b8f6817e999289654512 /tests/core/normal.odin
parentd3f649d244529d93b489140e5c7a1aaff97bedb2 (diff)
Fix more procedure to be `contextless`
Diffstat (limited to 'tests/core/normal.odin')
-rw-r--r--tests/core/normal.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/normal.odin b/tests/core/normal.odin
index 5bc73bd24..a64f38209 100644
--- a/tests/core/normal.odin
+++ b/tests/core/normal.odin
@@ -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!")
}
}