diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-14 10:26:19 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-15 20:39:45 +0200 |
| commit | bb8ff499ef234f2598f5a66fcf6686b847c2ea64 (patch) | |
| tree | 5d19ea471e6d4c623c47efa8a3028f5c25a88bae /cscript | |
| parent | bcf0f131281399f93fe2ca57c99d1046b3a2fb44 (diff) | |
Fix macOS environment setup.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -925,7 +925,10 @@ def test(target, options, test): if target.platform == 'windows': cmd = 'run\\tests ' else: - cmd = 'run/tests --check --log_level=test_suite ' + cmd = 'run/tests ' + if target.environment_prefix: + cmd += '-e %s ' % target.environment_prefix + cmd += ' --check --log_level=test_suite ' if target.debug: cmd += '--backtrace ' if test is not None: |
