diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-10-16 08:22:56 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-10-17 15:20:53 +0200 |
commit | 86a8989d4557a09b68f8b78b6c3fb6ad3f23ca6f (patch) | |
tree | e9d04dd3673999826af30cc489bfc475be1703dd /tests | |
parent | 1b5f3f65cc71341a4f9fc9e89bb6985fde703758 (diff) | |
download | qemu-86a8989d4557a09b68f8b78b6c3fb6ad3f23ca6f.zip qemu-86a8989d4557a09b68f8b78b6c3fb6ad3f23ca6f.tar.gz qemu-86a8989d4557a09b68f8b78b6c3fb6ad3f23ca6f.tar.bz2 |
tests/vm: avoid invalid escape in Python string
This is an error in Python 3.12; fix it by using a raw string literal
or by double-escaping the backslash.
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vm/basevm.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py index 8aef4cf..61725b8 100644 --- a/tests/vm/basevm.py +++ b/tests/vm/basevm.py @@ -331,8 +331,8 @@ class BaseVM(object): def console_log(self, text): for line in re.split("[\r\n]", text): # filter out terminal escape sequences - line = re.sub("\x1b\[[0-9;?]*[a-zA-Z]", "", line) - line = re.sub("\x1b\([0-9;?]*[a-zA-Z]", "", line) + line = re.sub("\x1b\\[[0-9;?]*[a-zA-Z]", "", line) + line = re.sub("\x1b\\([0-9;?]*[a-zA-Z]", "", line) # replace unprintable chars line = re.sub("\x1b", "<esc>", line) line = re.sub("[\x00-\x1f]", ".", line) @@ -530,7 +530,7 @@ def get_qemu_version(qemu_path): and return the major number.""" output = subprocess.check_output([qemu_path, '--version']) version_line = output.decode("utf-8") - version_num = re.split(' |\(', version_line)[3].split('.')[0] + version_num = re.split(r' |\(', version_line)[3].split('.')[0] return int(version_num) def parse_config(config, args): |