summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index 1d206dbfd..9e7ba447d 100644
--- a/cscript
+++ b/cscript
@@ -737,11 +737,11 @@ def make_manual(target):
def test(target, options, test):
target.set('LC_ALL', 'C')
if target.platform == 'windows':
- cmd = 'run\\tests'
+ cmd = 'run\\tests '
else:
cmd = 'run/tests '
if target.debug:
cmd += '--backtrace '
if test is not None:
- cmd += '--run_test=%s' % test
+ cmd += '-t %s' % test
target.command(cmd)