[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 6/9] iotests.py: Add is_str()
From: |
Max Reitz |
Subject: |
[Qemu-devel] [PATCH 6/9] iotests.py: Add is_str() |
Date: |
Wed, 23 Jan 2019 15:46:07 +0100 |
Strings can have various representations, this helper function checks
whether a given value is in any of them.
Signed-off-by: Max Reitz <address@hidden>
---
tests/qemu-iotests/iotests.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index f51456fa63..29e4e3306f 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -221,6 +221,12 @@ def image_size(img):
r = qemu_img_pipe('info', '--output=json', '-f', imgfmt, img)
return json.loads(r)['virtual-size']
+def is_str(val):
+ if sys.version_info.major >= 3:
+ return isinstance(val, str) or isinstance(val, bytes)
+ else:
+ return isinstance(val, str) or isinstance(val, unicode)
+
test_dir_re = re.compile(r"%s" % test_dir)
def filter_test_dir(msg):
return test_dir_re.sub("TEST_DIR", msg)
--
2.20.1
- Re: [Qemu-devel] [PATCH 2/9] iotests: Remove superfluous rm from 232, (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 <=
- [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, 2019/01/23
- [Qemu-devel] [PATCH 9/9] iotests.py: s/_/-/g on keys in qmp_log(), Max Reitz, 2019/01/23