From 5b0b9ae0e3ad1db1d470c5236b82395a39d298c2 Mon Sep 17 00:00:00 2001 From: Apprentice-Alchemist <53486764+Apprentice-Alchemist@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:34:25 +0200 Subject: [PATCH] . --- tests/misc/neko/projects/Issue10937/Main.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/misc/neko/projects/Issue10937/Main.hx b/tests/misc/neko/projects/Issue10937/Main.hx index 932132521f7..3851197df5d 100644 --- a/tests/misc/neko/projects/Issue10937/Main.hx +++ b/tests/misc/neko/projects/Issue10937/Main.hx @@ -62,6 +62,10 @@ function main() { trace(neko.vm.Loader.local().getPath()); final ndllPath = neko.vm.Loader.local().getPath()[0]; + + final arch = neko.Lib.nekoToHaxe(neko.Lib.load("std", "sys_cpu_arch", 0)()); + trace(arch); + if (ndllPath.endsWith(expectedNdllSubDir)) { Sys.println("Success"); } else {