本文整理汇总了Python中CIME.XML.files.Files.get_values方法的典型用法代码示例。如果您正苦于以下问题:Python Files.get_values方法的具体用法?Python Files.get_values怎么用?Python Files.get_values使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CIME.XML.files.Files
的用法示例。
在下文中一共展示了Files.get_values方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_tests_from_xml
# 需要导入模块: from CIME.XML.files import Files [as 别名]
# 或者: from CIME.XML.files.Files import get_values [as 别名]
def get_tests_from_xml(xml_machine=None,xml_category=None,xml_compiler=None, xml_testlist=None,
machine=None, compiler=None):
"""
Parse testlists for a list of tests
"""
listoftests = []
testlistfiles = []
if(machine is not None):
thismach=machine
if(compiler is not None):
thiscompiler = compiler
if(xml_testlist is not None):
expect(os.path.isfile(xml_testlist), "Testlist not found or not readable "+xml_testlist)
testlistfiles.append(xml_testlist)
else:
files = Files()
test_spec_files = files.get_values("TESTS_SPEC_FILE","component")
for spec_file in test_spec_files.viewvalues():
if(os.path.isfile(spec_file)):
testlistfiles.append(spec_file)
for testlistfile in testlistfiles:
thistestlistfile = Testlist(testlistfile)
newtests = thistestlistfile.get_tests(xml_machine, xml_category, xml_compiler)
for test in newtests:
if(machine is None):
thismach = test["machine"]
if(compiler is None):
thiscompiler = test["compiler"]
test["name"] = CIME.utils.get_full_test_name(test["testname"], test["grid"], test["compset"], thismach, thiscompiler,
None if "testmods" not in test else test["testmods"])
logging.info("Adding test "+test["name"])
listoftests += newtests
return listoftests