From 55293a3d7602ebfca4bdcd56b26e2d970c05a04e Mon Sep 17 00:00:00 2001 From: Tobiasz Laskowski Date: Thu, 16 Jan 2025 21:50:12 +0000 Subject: [PATCH] [tests] Add missing cppia case --- tests/sys/src/UtilityProcess.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/sys/src/UtilityProcess.hx b/tests/sys/src/UtilityProcess.hx index 354d6c744ab..d42fadf4dc9 100644 --- a/tests/sys/src/UtilityProcess.hx +++ b/tests/sys/src/UtilityProcess.hx @@ -82,6 +82,8 @@ class UtilityProcess { var proc = #if (macro || interp) new Process("haxe", ["compile-each.hxml", "-p", options.execPath, "--run", options.execName].concat(args)); + #elseif cppia + new Process(Sys.getEnv("CPPIA_HOST"), [execFull].concat(args)); #elseif cpp new Process(execFull, args); #elseif java