summaryrefslogtreecommitdiffstats
path: root/test/Deprecated
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-12-29 08:09:17 (GMT)
committerSteven Knight <knight@baldmt.com>2008-12-29 08:09:17 (GMT)
commit7b36529d703b12ee4f16c3aa5bd34a002235371d (patch)
tree16a5362d3bbb9e115d268d07e1673667ea500657 /test/Deprecated
parentd0259ae0e1a37f431b21c8a7116b4206c127f8b6 (diff)
downloadSCons-7b36529d703b12ee4f16c3aa5bd34a002235371d.zip
SCons-7b36529d703b12ee4f16c3aa5bd34a002235371d.tar.gz
SCons-7b36529d703b12ee4f16c3aa5bd34a002235371d.tar.bz2
Fix use of path names in regular expression matches by running them
through re.escape() (specifically to avoid problems with embedded "+++" in temporary directory names on Mac OS X).
Diffstat (limited to 'test/Deprecated')
-rw-r--r--test/Deprecated/Options/PathOption.py27
-rw-r--r--test/Deprecated/Options/help.py13
2 files changed, 27 insertions, 13 deletions
diff --git a/test/Deprecated/Options/PathOption.py b/test/Deprecated/Options/PathOption.py
index 9b845a1..e53b077 100644
--- a/test/Deprecated/Options/PathOption.py
+++ b/test/Deprecated/Options/PathOption.py
@@ -30,6 +30,7 @@ various canned validators.
"""
import os.path
+import re
import string
import TestSCons
@@ -99,15 +100,16 @@ test.run(arguments=['qtdir=%s' % qtpath, 'qt_libraries=%s' % libpath], stderr=wa
check([qtpath, libpath, libpath])
qtpath = os.path.join(workpath, 'non', 'existing', 'path')
+qtpath_re = re.escape(qtpath)
expect_stderr = warnings + ("""
-scons: \\*\\*\\* Path for option qtdir does not exist: %(qtpath)s
+scons: \\*\\*\\* Path for option qtdir does not exist: %(qtpath_re)s
""" % locals()) + TestSCons.file_expr
test.run(arguments=['qtdir=%s' % qtpath], stderr=expect_stderr, status=2)
expect_stderr = warnings + ("""
-scons: \\*\\*\\* Path for option qt_libraries does not exist: %(qtpath)s
+scons: \\*\\*\\* Path for option qt_libraries does not exist: %(qtpath_re)s
""" % locals()) + TestSCons.file_expr
test.run(arguments=['qt_libraries=%s' % qtpath], stderr=expect_stderr, status=2)
@@ -126,6 +128,13 @@ test.write(existing_file, "existing_file\n")
non_existing_subdir = test.workpath('non_existing_subdir')
non_existing_file = test.workpath('non_existing_file')
+default_file_re = re.escape(default_file)
+default_subdir_re = re.escape(default_subdir)
+existing_subdir_re = re.escape(existing_subdir)
+existing_file_re = re.escape(existing_file)
+non_existing_subdir_re = re.escape(non_existing_subdir)
+non_existing_file_re = re.escape(non_existing_file)
+
test.write('SConstruct', """\
@@ -175,7 +184,7 @@ Default(env.Alias('dummy', None))
""" % default_file)
expect_stderr = warnings + ("""
-scons: \\*\\*\\* File path for option X does not exist: %(default_file)s
+scons: \\*\\*\\* File path for option X does not exist: %(default_file_re)s
""" % locals()) + TestSCons.file_expr
test.run(status=2, stderr=expect_stderr)
@@ -186,7 +195,7 @@ test.run(stderr=warnings)
check([default_file])
expect_stderr = warnings + ("""
-scons: \\*\\*\\* File path for option X is a directory: %(existing_subdir)s
+scons: \\*\\*\\* File path for option X is a directory: %(existing_subdir_re)s
""" % locals()) + TestSCons.file_expr
test.run(arguments=['X=%s' % existing_subdir], status=2, stderr=expect_stderr)
@@ -195,7 +204,7 @@ test.run(arguments=['X=%s' % existing_file], stderr=warnings)
check([existing_file])
expect_stderr = warnings + ("""
-scons: \\*\\*\\* File path for option X does not exist: %(non_existing_file)s
+scons: \\*\\*\\* File path for option X does not exist: %(non_existing_file_re)s
""" % locals()) + TestSCons.file_expr
test.run(arguments=['X=%s' % non_existing_file], status=2, stderr=expect_stderr)
@@ -216,7 +225,7 @@ Default(env.Alias('dummy', None))
""" % default_subdir)
expect_stderr = warnings + ("""
-scons: \\*\\*\\* Directory path for option X does not exist: %(default_subdir)s
+scons: \\*\\*\\* Directory path for option X does not exist: %(default_subdir_re)s
""" % locals()) + TestSCons.file_expr
test.run(status=2, stderr=expect_stderr)
@@ -227,7 +236,7 @@ test.run(stderr=warnings)
check([default_subdir])
expect_stderr = warnings + ("""
-scons: \\*\\*\\* Directory path for option X is a file: %(existing_file)s
+scons: \\*\\*\\* Directory path for option X is a file: %(existing_file_re)s
""" % locals()) + TestSCons.file_expr
test.run(arguments=['X=%s' % existing_file],
@@ -238,7 +247,7 @@ test.run(arguments=['X=%s' % existing_subdir], stderr=warnings)
check([existing_subdir])
expect_stderr = warnings + ("""
-scons: \\*\\*\\* Directory path for option X does not exist: %(non_existing_subdir)s
+scons: \\*\\*\\* Directory path for option X does not exist: %(non_existing_subdir_re)s
""" % locals()) + TestSCons.file_expr
test.run(arguments=['X=%s' % non_existing_subdir],
@@ -264,7 +273,7 @@ test.run(stderr=warnings)
check([default_subdir])
expect_stderr = warnings + ("""
-scons: \\*\\*\\* Path for option X is a file, not a directory: %(existing_file)s
+scons: \\*\\*\\* Path for option X is a file, not a directory: %(existing_file_re)s
""" % locals()) + TestSCons.file_expr
test.run(arguments=['X=%s' % existing_file], status=2, stderr=expect_stderr)
diff --git a/test/Deprecated/Options/help.py b/test/Deprecated/Options/help.py
index 049cb1e..2ad5253 100644
--- a/test/Deprecated/Options/help.py
+++ b/test/Deprecated/Options/help.py
@@ -29,6 +29,7 @@ Test the Options help messages.
"""
import os.path
+import re
import string
try:
@@ -51,6 +52,10 @@ qtpath = os.path.join(workpath, 'qt')
libpath = os.path.join(qtpath, 'lib')
libdirvar = os.path.join('$qtdir', 'lib')
+qtpath_re = re.escape(qtpath)
+libpath_re = re.escape(libpath)
+libdirvar_re = re.escape(libdirvar)
+
test.subdir(qtpath)
test.subdir(libpath)
@@ -135,12 +140,12 @@ x11: use X11 installed here \\(yes = search some places\\)
actual: %(str_True)s
qtdir: where the root of Qt is installed \\( /path/to/qtdir \\)
- default: %(qtpath)s
- actual: %(qtpath)s
+ default: %(qtpath_re)s
+ actual: %(qtpath_re)s
qt_libraries: where the Qt library is installed \\( /path/to/qt_libraries \\)
- default: %(libdirvar)s
- actual: %(libpath)s
+ default: %(libdirvar_re)s
+ actual: %(libpath_re)s
Use scons -H for help about command-line options.
""" % locals()