Searched refs:procout (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/tools/testing/selftests/tc-testing/ |
H A D | tdc.py | 248 def verify_by_json(procout, res, tidx, args, pm): argument 250 outputJSON = json.loads(procout) 374 (p, procout) = exec_cmd(args, pm, 'execute', tidx['dependsOn']) 393 (p, procout) = exec_cmd(args, pm, 'execute', tidx["cmdUnderTest"]) 406 …_failmsg('Command exited with {}, expected {}\n{}'.format(exit_code, tidx["expExitCode"], procout)) 407 print(procout) 411 (p, procout) = exec_cmd(args, pm, 'verify', tidx["verifyCmd"]) 412 if procout: 414 verify_by_json(procout, res, tidx, args, pm) 418 match_index = re.findall(match_pattern, procout) [all …]
|