From 79891687adcc6c8f0b8f5d4e5804da1b2cd8c29f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 2 Dec 2013 15:19:45 +0000 Subject: Don't try to run tests for Windows builds. --- cscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cscript') 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') -- cgit v1.2.3