Lines Matching full:sysinfo
25 job.sysinfo.log_before_each_test(mytest)
26 sysinfo_pickle = os.path.join(mytest.outputdir, 'sysinfo.pickle')
27 pickle.dump(job.sysinfo, open(sysinfo_pickle, 'w'))
28 job.record('GOOD', '', 'sysinfo.before')
38 sysinfo_pickle = os.path.join(mytest.outputdir, 'sysinfo.pickle')
40 job.sysinfo = pickle.load(open(sysinfo_pickle))
41 job.sysinfo.__init__(job.resultdir)
42 job.sysinfo.log_after_each_test(mytest)
43 job.record('GOOD', '', 'sysinfo.after')
54 sysinfo_pickle = os.path.join(mytest.outputdir, 'sysinfo.pickle')
56 job.sysinfo = pickle.load(open(sysinfo_pickle))
57 job.sysinfo.__init__(job.resultdir)
58 job.sysinfo.%s(mytest, iteration=%d)
59 pickle.dump(job.sysinfo, open(sysinfo_pickle, 'w'))
60 job.record('GOOD', '', 'sysinfo.iteration.%s')
79 # sysinfo install files and outputdir contents after each run
112 tmp_dir = self.host.get_tmp_dir(parent="/tmp/sysinfo")
146 """Pulls from the client the pickle file with the saved sysinfo state.
150 host.get_file(os.path.join(outputdir, "sysinfo.pickle"), path)
155 """Pushes the server saved sysinfo pickle file to the client.
159 os.path.join(outputdir, "sysinfo.pickle"))
165 """Pulls sysinfo and keyval data from the client.
167 # pull the sysinfo data back on to the server
168 host.get_file(os.path.join(outputdir, "sysinfo"), mytest.outputdir)
179 @log.log_and_ignore_errors("pre-test server sysinfo error:")
182 # run the pre-test sysinfo script
189 @log.log_and_ignore_errors("pre-test iteration server sysinfo error:")
192 # this function is called after before_hook() se we have sysinfo state
195 # run the pre-test iteration sysinfo script
201 # get the new sysinfo state from the client
205 @log.log_and_ignore_errors("post-test iteration server sysinfo error:")
208 # push latest sysinfo state to the client
210 # run the post-test iteration sysinfo script
216 # get the new sysinfo state from the client
220 @log.log_and_ignore_errors("post-test server sysinfo error:")
224 # run the post-test sysinfo script
245 logging.exception('Error cleaning up the sysinfo autotest/host '