allow skipping CppUnit until we figure out where to get a copy of it again... or just replace it?

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6388 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2013-07-14 20:03:34 +00:00
parent 770fd6944a
commit 75b6bb770f

View file

@ -38,6 +38,9 @@ UPDATE_URL=http://nsis.sourceforge.net/Special:Simpleupdate?action=raw
[svn2cl]
SVN2CL_XSL=svn2cl.xsl
[options]
SKIP_CPPUNIT=no
=========================
7zatarbz2.bat:
@ -97,6 +100,8 @@ UPDATE_URL = cfg.get('wiki', 'UPDATE_URL')
SVN2CL_XSL = cfg.get('svn2cl', 'SVN2CL_XSL')
SKIP_CPPUINT = cfg.get('options', 'SKIP_CPPUNIT')
### config env
SVN_TAG = 'v' + ''.join(VERSION.split('.'))
@ -161,7 +166,7 @@ def RunTests():
print 'running tests...'
run(
'scons -C .. test',
'scons -C .. %s' % (SKIP_CPPUINT == 'yes' and 'test-scripts' or 'test'),
LOG_ALL,
'tests failed - see test.log for details'
)