Use python split instead of scons Split so we can have spaces in file names for ignored tests.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5560 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
e6f4040268
commit
c62b08b189
1 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ else:
|
||||||
if 'msvc' in defenv['TOOLS'] or 'mstoolkit' in defenv['TOOLS']:
|
if 'msvc' in defenv['TOOLS'] or 'mstoolkit' in defenv['TOOLS']:
|
||||||
ignore_tests = 'none'
|
ignore_tests = 'none'
|
||||||
else:
|
else:
|
||||||
ignore_tests = ','.join(Split("""
|
ignore_tests = ','.join("""
|
||||||
Examples/System/System.nsi
|
Examples/System/System.nsi
|
||||||
Examples/LogicLib.nsi
|
Examples/LogicLib.nsi
|
||||||
Examples/StrFunc.nsi
|
Examples/StrFunc.nsi
|
||||||
|
@ -146,7 +146,7 @@ Examples/gfx.nsi
|
||||||
Examples/nsDialogs/example.nsi
|
Examples/nsDialogs/example.nsi
|
||||||
Examples/nsDialogs/InstallOptions.nsi
|
Examples/nsDialogs/InstallOptions.nsi
|
||||||
Examples/nsDialogs/welcome.nsi
|
Examples/nsDialogs/welcome.nsi
|
||||||
"""))
|
""".strip().split("\n"))
|
||||||
|
|
||||||
# version
|
# version
|
||||||
opts.Add(('VERSION', 'Version of NSIS', cvs_version))
|
opts.Add(('VERSION', 'Version of NSIS', cvs_version))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue