summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-12-02 15:19:45 +0000
committerCarl Hetherington <cth@carlh.net>2013-12-02 15:19:45 +0000
commit79891687adcc6c8f0b8f5d4e5804da1b2cd8c29f (patch)
tree3b31732ed858a0059525475c4fbd64b00780b9c6 /cscript
parent6d15d74a604ce198454975b6eee04d4adffe1bd6 (diff)
Don't try to run tests for Windows builds.
Diffstat (limited to 'cscript')
-rw-r--r--cscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/cscript b/cscript
index 540c069a1..531f71098 100644
--- a/cscript
+++ b/cscript
@@ -185,5 +185,6 @@ def make_manual(target):
return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')]
def test(target):
- target.set('LC_ALL', 'C')
- target.command('run/tests')
+ if target.platform != 'windows':
+ target.set('LC_ALL', 'C')
+ target.command('run/tests')