we need regular Split() as it's not promised those lines will be separated by just \n and not \r\n

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5567 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2008-03-03 18:39:12 +00:00
parent 9993add206
commit 8297c5c021

View file

@ -132,8 +132,7 @@ else:
if 'msvc' in defenv['TOOLS'] or 'mstoolkit' in defenv['TOOLS']:
ignore_tests = 'none'
else:
ignore_tests = ','.join("""
Examples/System/System.nsi
ignore_tests = ','.join(Split("""
Examples/LogicLib.nsi
Examples/StrFunc.nsi
Examples/TextFunc.nsi
@ -145,10 +144,9 @@ Examples/makensis.nsi
Examples/gfx.nsi
Examples/nsDialogs/example.nsi
Examples/nsDialogs/InstallOptions.nsi
Examples/nsDialogs/welcome.nsi
Examples/Modern UI/WelcomeFinish.nsi
Examples/Modern UI/HeaderBitmap.nsi
""".strip().split("\n"))
Examples/nsDialogs/welcome.nsi""")
+ ['Examples/Modern UI/WelcomeFinish.nsi']
+ ['Examples/Modern UI/HeaderBitmap.nsi'])
# version
opts.Add(('VERSION', 'Version of NSIS', cvs_version))