Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: server/test.py

Issue 3919001: Ignore sysinfo pre/post abortions. (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: Removed typo. Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « server/autotest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: server/test.py
diff --git a/server/test.py b/server/test.py
index 960fbd9a403e63a8e746ec7e0465da9a73ab493c..926a59503ee962a3e12012c4caf9507ae39a5bfe 100644
--- a/server/test.py
+++ b/server/test.py
@@ -182,7 +182,7 @@ class _sysinfo_logger(object):
def before_hook(self, mytest, host, at, outputdir):
# run the pre-test sysinfo script
at.run(_sysinfo_before_test_script % outputdir,
- results_dir=self.job.resultdir)
+ results_dir=self.job.resultdir, ignore_aborts=True)
self._pull_pickle(host, outputdir)
@@ -197,7 +197,7 @@ class _sysinfo_logger(object):
at.run(_sysinfo_iteration_script %
(outputdir, 'log_before_each_iteration', mytest.iteration,
'before'),
- results_dir=self.job.resultdir)
+ results_dir=self.job.resultdir, ignore_aborts=True)
# get the new sysinfo state from the client
self._pull_pickle(host, outputdir)
@@ -212,7 +212,7 @@ class _sysinfo_logger(object):
at.run(_sysinfo_iteration_script %
(outputdir, 'log_after_each_iteration', mytest.iteration,
'after'),
- results_dir=self.job.resultdir)
+ results_dir=self.job.resultdir, ignore_aborts=True)
# get the new sysinfo state from the client
self._pull_pickle(host, outputdir)
@@ -224,7 +224,7 @@ class _sysinfo_logger(object):
self._push_pickle(host, outputdir);
# run the post-test sysinfo script
at.run(_sysinfo_after_test_script % outputdir,
- results_dir=self.job.resultdir)
+ results_dir=self.job.resultdir, ignore_aborts=True)
self._pull_sysinfo_keyval(host, outputdir, mytest)
« no previous file with comments | « server/autotest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698