Seems that the reaim parsing does not work, throwing a required parameter
error.

Signed-off-by: Andy Whitcroft <apw@shadowen.org>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@732 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/reaim/reaim.py b/client/tests/reaim/reaim.py
index d8e1690..8f356a4 100755
--- a/client/tests/reaim/reaim.py
+++ b/client/tests/reaim/reaim.py
@@ -73,7 +73,7 @@
 	def __format_results(self, results):
 		out = open(self.resultsdir + '/keyval', 'w')
 		for line in results.split('\n'):
-			m = re.match('Max Jobs per Minute (\d+)')
+			m = re.match('Max Jobs per Minute (\d+)', line)
 			if m:
 				max_jobs_per_min = m.group(1)
 			if re.match(r"^[0-9\. ]+$", line):