Lines Matching refs:caseinfo
137 def call_pre_case(self, caseinfo, *, test_skip=False): argument
139 if pgn not in caseinfo['plugins']:
142 pgn_inst.pre_case(caseinfo, test_skip)
146 print('testid is {}'.format(caseinfo['id']))
149 def call_post_case(self, caseinfo): argument
151 if pgn not in caseinfo['plugins']:
155 def call_pre_execute(self, caseinfo): argument
157 if pgn not in caseinfo['plugins']:
161 def call_post_execute(self, caseinfo): argument
163 if pgn not in caseinfo['plugins']:
176 def call_adjust_command(self, caseinfo, stage, command): argument
178 if pgn not in caseinfo['plugins']:
201 def exec_cmd(caseinfo, args, pm, stage, command): argument
211 command = pm.call_adjust_command(caseinfo, stage, command)
236 def prepare_env(caseinfo, args, pm, stage, prefix, cmdlist, output = None): argument
254 (proc, foutput) = exec_cmd(caseinfo, args, pm, stage, cmd)