We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 765393b + 13a9765 commit 27a366fCopy full SHA for 27a366f
1 file changed
virttest/utils_misc.py
@@ -2944,6 +2944,9 @@ def get_image_info(image_file):
2944
elif line.find("extended l2") != -1:
2945
extended_l2 = line.split(":")[-1].strip()
2946
image_info_dict["extended l2"] = extended_l2
2947
+ elif line.find("data file:") != -1:
2948
+ data_file = line.split(":")[-1].strip()
2949
+ image_info_dict["data file"] = data_file
2950
return image_info_dict
2951
except (KeyError, IndexError, process.CmdError) as detail:
2952
raise exceptions.TestError(
0 commit comments