summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
Diffstat (limited to 'cscript')
-rw-r--r--cscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/cscript b/cscript
index 61dd60c06..0e8352757 100644
--- a/cscript
+++ b/cscript
@@ -741,7 +741,10 @@ def make_manual(target):
def test(target, options, test):
target.set('LC_ALL', 'C')
- cmd = 'run/tests '
+ if target.platform == 'windows':
+ cmd = 'run\\tests'
+ else:
+ cmd = 'run/tests '
if target.debug:
cmd += '--backtrace '
if test is not None: