summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Interactive/version.py2
-rw-r--r--test/option-v.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/test/Interactive/version.py b/test/Interactive/version.py
index f948db7..bbca9ef 100644
--- a/test/Interactive/version.py
+++ b/test/Interactive/version.py
@@ -63,12 +63,14 @@ test.run(arguments = '-Q --interactive',
# depending on whether it's invoked through scons.py or scons.bat.
expect1 = r"""scons>>> SCons by Steven Knight et al\.:
\tengine: v\S+, [^,]*, by \S+ on \S+
+\tengine path: \[.*\]
%(copyright_line)sscons>>>
""" % locals()
expect2 = r"""scons>>> SCons by Steven Knight et al\.:
\tscript: v\S+, [^,]*, by \S+ on \S+
\tengine: v\S+, [^,]*, by \S+ on \S+
+\tengine path: \[.*\]
%(copyright_line)sscons>>>
""" % locals()
diff --git a/test/option-v.py b/test/option-v.py
index 5065eda..680f541 100644
--- a/test/option-v.py
+++ b/test/option-v.py
@@ -43,11 +43,13 @@ copyright_line = fmt % (copyright_marker, TestSCons.copyright_years)
# depending on whether it's invoked through scons.py or scons.bat.
expect1 = r"""SCons by Steven Knight et al.:
\tengine: v\S+, [^,]*, by \S+ on \S+
+\tengine path: \[.*\]
""" + copyright_line
expect2 = r"""SCons by Steven Knight et al.:
\tscript: v\S+, [^,]*, by \S+ on \S+
\tengine: v\S+, [^,]*, by \S+ on \S+
+\tengine path: \[.*\]
""" + copyright_line
test.run(arguments = '-v')