diff options
author | Mats Wichmann <mats@linux.com> | 2021-01-21 20:51:35 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2021-01-22 19:08:01 (GMT) |
commit | bc339562305df8cff3bc2e6663a87d8cd343b665 (patch) | |
tree | 120d0b152e7af49c3a422e075e1d21499a16266f /test/Interactive | |
parent | 64cab3512292da9b4470d212824e543a3c6b9c52 (diff) | |
download | SCons-bc339562305df8cff3bc2e6663a87d8cd343b665.zip SCons-bc339562305df8cff3bc2e6663a87d8cd343b665.tar.gz SCons-bc339562305df8cff3bc2e6663a87d8cd343b665.tar.bz2 |
Initial support in tests for Python 3.10
Expected bytecode and one changed expected exception message.
Change some more regexes to be specified as rawstrings in response
to DeprecationWarnings.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Interactive')
-rw-r--r-- | test/Interactive/configure.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Interactive/configure.py b/test/Interactive/configure.py index dfe1c7f..ebb4262 100644 --- a/test/Interactive/configure.py +++ b/test/Interactive/configure.py @@ -53,9 +53,9 @@ import re # The order of this list is related to the order of the counts below expected_patterns = [ - re.compile("^scons>>> .*foo\.cpp.*$"), - re.compile("^scons>>> scons: `foo.obj' is up to date\.$"), - re.compile("^scons>>>\s*$"), + re.compile(r"^scons>>> .*foo\.cpp.*$"), + re.compile(r"^scons>>> scons: `foo.obj' is up to date\.$"), + re.compile(r"^scons>>>\s*$"), ] # The order of this list is related to the order of the regular expressions above |