未验证 提交 6b1fe28d 编写于 作者: X Xu Han 提交者: GitHub

Merge pull request #1408 from hereischen/smbios_table_bug_fix

smbios_table: make uuid check case insensitive
......@@ -99,6 +99,11 @@ def run(test, params, env):
if smbios_get_para == notset_output:
smbios_get_para = default_key_para
# make UUID check case insensitive
if key == "UUID":
smbios_set_para = smbios_set_para.lower()
smbios_get_para = smbios_get_para.lower()
if (smbios_set_para not in smbios_get_para):
e_msg = ("%s.%s mismatch, Set '%s' but guest is : '%s'"
% (sm_type, key, smbios_set_para,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册