/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
H A D | c_parser_lite.py | 79 return re.match(r"[\s\S]*(Tests)[\s\S]*(Failures)[\s\S]*(Ignored)[\s\S]*", line) 82 return re.match("{}{}".format(self.pattern, _CTEST_SUITE_TEST_RUN_TAG), 86 return re.match("{}{}".format(self.pattern, _CTEST_SUITE_TIME_RUN_TAG), 90 _, message_index = re.match( 97 return re.match( 112 test_matcher = re.match(r".*(\d+ Tests).+", line) 114 re.match(r".*(Failures).*", line) 116 re.match(r".*(Ignored).*", line) 152 end_time = re.match(self.pattern, message).group().strip() 153 start_time = re.match(sel [all...] |
H A D | cpp_parser.py | 85 if re.match(pattern, line.strip()): 87 elif re.match(r'(\d+) test[s]? from (.*)', message): 171 matcher = re.match(r'(.*) \((\d+) ms\)', message) 225 matcher = re.match(r'Running (\d+) test[s]? from .*', message) 238 matcher = re.match(r'(\d+) test[s]? from (.*)', message) 253 matcher = re.match(r'.*\((\d+) ms total\)', message) 263 matcher = re.match(r'.*\((\d+) ms total\)', message) 344 class_matcher = re.match('^([a-zA-Z]+.*)\\.$', line) 345 method_matcher = re.match('\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$',
|
H A D | jsunit_parser.py | 85 (year, re.match(self.pattern, message).group().strip()) 87 (year, re.match(self.pattern, 96 match = re.match(pattern, filter_message) 97 _, status_end_index = match.span() 106 status = status_dict.get(match.group(1)) 178 m_result = re.match(r".*\[suite start](.+), total cases: (\d+)", 187 if re.match(r".*\[suite start].*", message): 188 _, index = re.match(r".*\[suite start]", message).span()
|
H A D | oh_rust_parser.py | 53 matcher = re.match(self.running_pattern, line) 58 matcher = re.match(self.test_result_pattern, line) 64 matcher = re.match(self.test_pattern, line) 69 matcher = re.match(self.stout_pattern, line)
|
H A D | cpp_parser_lite.py | 98 if re.match(pattern, line.strip()): 100 elif re.match(r'(\d+) test[s]? from (.*)', message): 178 matcher = re.match(r'(.*) \((\d+) ms\)(.*)', message) 226 matcher = re.match(r'.* Running (\d+) test[s]? from .*', message) 238 matcher = re.match(r'(\d+) test[s]? from (.*)', message) 250 matcher = re.match(r'.*\((\d+) ms total\)', message) 261 matcher = re.match(r'.*\((\d+) ms total\)', message) 357 self.class_result = re.compile('^([a-zA-Z]+.*)\\.$').match(line) 362 '\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$').match(line)
|
H A D | jsunit_parser_lite.py | 78 (year, re.match(self.pattern, message).group().strip()) 80 (year, re.match(self.pattern, 89 _, status_end_index = re.match(pattern, filter_message).span() 156 if re.match(r".*\[suite start\].*", message): 157 _, index = re.match(r".*\[suite start\]", message).span()
|
H A D | oh_kernel_parser.py | 95 matcher = re.match(pattern, line) 107 matcher = re.match(pattern, line) 122 matcher = re.match(pattern, line) 153 matcher = re.match(pattern, line)
|
/test/testfwk/xdevice/plugins/devicetest/utils/ |
H A D | util.py | 182 if re.match(rex, version): 197 match = re.search(r'(\d+\.\d+\.\d+\.\d+)', version_str) 198 if match: 199 return match.group(1) 349 match = re.search(r'File "(.*?)", line \d+, in (.+)', stack_line) 350 if match: 351 file_name = match.group(1).split(os.sep)[-1] 352 method_name = match.group(2).strip()
|
/test/testfwk/arkxtest/uitest/test/ |
H A D | ui_driver_test.cpp | 300 bool match = true; in TEST_F() 301 match = match && window.bundleName_ == filterBundle["bundleName"].get<string>(); in TEST_F() 302 return match; in TEST_F() 312 bool match = true; in TEST_F() 313 match = match && window.bundleName_ == filterBundleNotFind["bundleName"].get<string>(); in TEST_F() 314 return match; in TEST_F() 375 bool match = true; in TEST_F() 376 match in TEST_F() [all...] |
/test/xts/acts/pcs/pcs_py/ |
H A D | testRealRandomGenerate.py | 43 if not re.match(pattern, randomNumber): 45 assert re.match(pattern, randomNumber)
|
/test/testfwk/arkxtest/uitest/core/ |
H A D | widget_selector.cpp | 76 for (auto &match : selfMatchers_) { in Describe() 77 ss << match.Describe() << ","; in Describe()
|
H A D | frontend_api_handler.cpp | 633 auto matchPattern = ReadCallArg<uint8_t>(in, INDEX_ONE, ValueMatchPattern::EQ); // match pattern argument in GenericOnAttrBuilder() 740 bool match = true; in RegisterUiDriverWindowFinder() 742 match = match && (filterJson["bundleName"].get<string>() == window.bundleName_); in RegisterUiDriverWindowFinder() 745 match = match && (filterJson["title"].get<string>() == window.title_); in RegisterUiDriverWindowFinder() 748 match = match && (filterJson["focused"].get<bool>() == window.focused_); in RegisterUiDriverWindowFinder() 751 match = match in RegisterUiDriverWindowFinder() [all...] |
/test/xts/acts/security/certificate_framework/js_api_test_one/entry/src/ohosTest/js/test/utils/certificate/ |
H A D | publicCertificateCallback.js | 44 selfSignedCaCertDer.match(/[\da-f]{2}/gi).map(function (h) {
346 testCrlDer.match(/[\da-f]{2}/gi).map(function (h) {
468 crlVerifyPriKeyHex.match(/[\da-f]{2}/gi).map(function (h) {
473 crlVerifyPubKeyHex.match(/[\da-f]{2}/gi).map(function (h) {
478 crlHex.match(/[\da-f]{2}/gi).map(function (h) {
|
H A D | publicCertificatePromise.js | 44 selfSignedCaCertDer.match(/[\da-f]{2}/gi).map(function (h) {
328 testCrlDer.match(/[\da-f]{2}/gi).map(function (h) {
411 crlVerifyPriKeyHex.match(/[\da-f]{2}/gi).map(function (h) {
416 crlVerifyPubKeyHex.match(/[\da-f]{2}/gi).map(function (h) {
421 crlHex.match(/[\da-f]{2}/gi).map(function (h) {
|
/test/testfwk/arkxtest/jsunit/src/module/config/ |
H A D | configService.js | 59 return !this.stress.match(STRESS_RULE) ? 1 : Number.parseInt(this.stress); 104 if (!params.stress.match(STRESS_RULE)) { 114 classArray.forEach(item => !item.match(nameRule) ? this.filterValid.push(`${key}:${params[key]}`) : null);
|
/test/xts/dcts/ability/dmsfwk/dmsfwkstagetestserver/ |
H A D | hvigorw.bat | 47 echo Please set the NODE_HOME variable in your environment to match the 60 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/dcts/communication/dsoftbus/rpcserver/ |
H A D | hvigorw.bat | 47 echo Please set the NODE_HOME variable in your environment to match the 60 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/dcts/distributeddatamgr/jstest/distributed_rdb_store/server/hap/ |
H A D | hvigorw.bat | 47 echo Please set the NODE_HOME variable in your environment to match the 60 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/dcts/multimedia/avsessionserver/ |
H A D | hvigorw.bat | 47 echo Please set the NODE_HOME variable in your environment to match the 60 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/dcts/communication/dsoftbus_request/rpcserver/ |
H A D | hvigorw.bat | 47 echo Please set the NODE_HOME variable in your environment to match the 60 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/dcts/distributeddatamgr/jstest/distributed_rdb_stage_store/server/ |
H A D | hvigorw.bat | 47 echo Please set the NODE_HOME variable in your environment to match the 60 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/dcts/filemanagement/fileio/server/ |
H A D | hvigorw.bat | 47 echo Please set the NODE_HOME variable in your environment to match the 60 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/tools/sample/AppSampleD/ |
H A D | hvigorw.bat | 48 echo Please set the NODE_HOME variable in your environment to match the 61 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/tools/sample/AppSampleE/ |
H A D | hvigorw.bat | 48 echo Please set the NODE_HOME variable in your environment to match the 61 echo Please set the NODE_HOME variable in your environment to match the
|
/test/xts/tools/sample/AppSampleF/ |
H A D | hvigorw.bat | 48 echo Please set the NODE_HOME variable in your environment to match the 61 echo Please set the NODE_HOME variable in your environment to match the
|