/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | report.py | 116 testcase = ElementTree.Element('testcase') 117 testcase.set("name", case_name) 118 testcase.set("status", 'run') 119 testcase.set("classname", case_name) 120 testcase.set("level", "") 121 testcase.set("result", case_result) 122 testcase.set("result_kind", result) 123 testcase.set("message", error) 124 testcase [all...] |
H A D | variables.py | 133 def testcase(self): member in CurCase 413 self.log.debug("testcase path is: {}".format(self.testcase_path))
|
/test/testfwk/xdevice/src/xdevice/_core/report/ |
H A D | repeater_helper.py | 76 for testcase in suite: 77 name = testcase.attrib.get(ReportConstant.name, "") 78 class_name = testcase.attrib.get(ReportConstant.class_name, "") 84 modules[uuid].append(testcase) 88 status = self._need_update_status(testcase) 94 if testcase.attrib.get(ReportConstant.result, 97 modules[uuid].append(testcase) 98 status = self._need_update_status(testcase) 105 def _need_update_status(cls, testcase): 106 status = testcase [all...] |
/test/testfwk/arkxtest/jsunit/src/module/report/ |
H A D | ReportExtend.js | 32 for (let testcase of specs) { 36 tag: 'testcase', 37 name: testcase.description, 42 if (testcase.error) { 47 message: testcase.error.message 51 } else if (testcase.result.failExpects.length > 0) { 54 testcase.result.failExpects.forEach(failExpect => {
|
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | source.py | 76 not config.testcase and not config.subsystems and \ 182 if not config.testfile and not config.testlist and not config.testcase \ 213 # get test sources from config.testcase 214 if getattr(config, ConfigConst.testcase, ""): 215 for test_source in config.testcase.split(";"): 288 if config.testcase and not config.testlist: 360 if getattr(config, ConfigConst.testcase, "") and not \ 417 if config.testcase and not config.testlist: 443 if config and getattr(config, "testcase", "") and not getattr(
|
H A D | scheduler.py | 544 config, ConfigConst.testcase)
|
/test/testfwk/developer_test/src/core/driver/ |
H A D | drivers.py | 271 ' <testcase name="%s" time="300" classname="%s" ' 277 file_desc.write(' </testcase>\n') 297 ' <testcase name="%s" time="300" classname="%s" ' 638 test_para = self._get_test_para(self.config.testcase, 645 # execute testcase 787 testcase, 799 if "" != testcase and "" == testlevel: 800 test_para = "%s=%s" % (GTestConst.exec_para_filter, testcase) 801 elif "" == testcase and "" != testlevel: 906 def _get_acts_test_para(testcase, [all...] |
H A D | lite_driver.py | 198 test_para = self._get_test_para(self.config.testcase, 226 def _get_test_para(self, testcase, testlevel): 227 if "" != testcase and "" == testlevel: 228 test_para = "%s=%s" % (GTestConst.exec_para_filter, testcase) 229 elif "" == testcase and "" != testlevel:
|
/test/testfwk/xdevice/plugins/devicetest/driver/ |
H A D | windows.py | 128 testcase = request.get("testcase") 130 if testcase: 131 testcase_list = str(testcase).split(";")
|
H A D | device_test.py | 185 testcase = request.get("testcase") 187 if testcase: 188 testcase_list = str(testcase).split(";")
|
/test/testfwk/developer_test/src/core/command/ |
H A D | parameter.py | 79 if "" != options.testcase and "" != options.testlevel:
|
H A D | run.py | 41 from core.testcase.testcase_manager import TestCaseManager
75 "build", "testcase")
207 LOG.info("testcase = %s" % options.testcase)
292 LOG.info("No testcase to retry")
|
H A D | console.py | 185 parser.add_argument("-tc", "--testcase",
188 dest="testcase",
471 testcase = "testcase"
variable in ConfigConst
|
/test/testfwk/xdevice/src/xdevice/_core/ |
H A D | constants.py | 274 testcase = "testcase" variable in ConfigConst 332 # Ignore testcase path
|
/test/testfwk/developer_test/src/core/build/ |
H A D | build_manager.py | 154 LOG.info("testcase = %s" % param.testcase)
|
/test/testfwk/xdevice/src/xdevice/_core/command/ |
H A D | console.py | 175 parser.add_argument("-tc", "--testcase", 178 dest=ConfigConst.testcase, 917 -tc TESTCASE, --testcase TESTCASE
|