There was no ABORT function when the job went wrong.
Tried to fix this up.

Also removed the status arg to job_complete, as it was unused.

Signed-off-by: Martin J. Bligh <mbligh@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@447 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/harness.py b/client/bin/harness.py
index bde2c5f..b598e1c 100755
--- a/client/bin/harness.py
+++ b/client/bin/harness.py
@@ -41,7 +41,12 @@
 		pass
 
 
-	def run_complete(self, status):
+	def run_abort(self):
+		"""A run within this job is aborting. It all went wrong"""
+		pass
+
+
+	def run_complete(self):
 		"""A run within this job is completing (all done)"""
 		pass