From a5d355683e577f018ceba2fbfdfac98bcc88bb48 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 13 May 2024 20:35:10 +0200 Subject: Pass environment prefix to test runner. --- cscript | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cscript') diff --git a/cscript b/cscript index 52d7e914..618b2fb9 100644 --- a/cscript +++ b/cscript @@ -81,6 +81,8 @@ def make_doxygen(target): def test(target, options, test): target.set('LC_ALL', 'C') cmd = 'run\\tests ' if target.platform == 'windows' else 'run/tests ' + if target.environment_prefix: + cmd += '-e %s' % target.environment_prefix if test is not None: cmd += '-t %s' % test target.command(cmd) -- cgit v1.2.3