[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 7/9] iotests.py: Filter filename in any string value
From: |
Max Reitz |
Subject: |
[Qemu-devel] [PATCH 7/9] iotests.py: Filter filename in any string value |
Date: |
Wed, 23 Jan 2019 15:46:08 +0100 |
filter_qmp_testfiles() currently filters the filename only for specific
keys. However, there are more keys that take filenames (such as
block-commit's @top and @base, or ssh's @path), and it does not make
sense to list them all here. "$TEST_DIR/$PID-" should have enough
entropy not to appear anywhere randomly.
Signed-off-by: Max Reitz <address@hidden>
---
tests/qemu-iotests/iotests.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index 29e4e3306f..b6cb73e108 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -274,7 +274,7 @@ def filter_testfiles(msg):
def filter_qmp_testfiles(qmsg):
def _filter(key, value):
- if key == 'filename' or key == 'backing-file':
+ if is_str(value):
return filter_testfiles(value)
return value
return filter_qmp(qmsg, _filter)
--
2.20.1
- [Qemu-devel] [PATCH 5/9] iotests: Fix 237 for Python 2.x, (continued)
- [Qemu-devel] [PATCH 5/9] iotests: Fix 237 for Python 2.x, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 4/9] iotests: Fix 207 to use QMP filters for qmp_log, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 3/9] iotests: Fix 232 for LUKS, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 6/9] iotests.py: Add is_str(), Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 8/9] iotests: Filter SSH paths, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 7/9] iotests.py: Filter filename in any string value,
Max Reitz <=
- [Qemu-devel] [PATCH 9/9] iotests.py: s/_/-/g on keys in qmp_log(), Max Reitz, 2019/01/23