Fix iozone.__format_results() method; it was ignoring "re-readers"
results.
Signed-off-by: Curt Wohlgemuth <curtw@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@2757 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/iozone/iozone.py b/client/tests/iozone/iozone.py
index faba8e3..ea0a9a6 100644
--- a/client/tests/iozone/iozone.py
+++ b/client/tests/iozone/iozone.py
@@ -63,9 +63,9 @@
keylist[key_name] = v
else:
child_regexp = re.compile('Children see throughput for[\s]+'
- '([\d]+)\s+([\w]+[\w\s]*)\=[\s]+([\d\.]*) KB/sec')
+ '([\d]+)\s+([-\w]+[-\w\s]*)\=[\s]+([\d\.]*) KB/sec')
parent_regexp = re.compile('Parent sees throughput for[\s]+'
- '([\d]+)\s+([\w]+[\w\s]*)\=[\s]+([\d\.]*) KB/sec')
+ '([\d]+)\s+([-\w]+[-\w\s]*)\=[\s]+([\d\.]*) KB/sec')
KBsec_regexp = re.compile('\=[\s]+([\d\.]*) KB/sec')
KBval_regexp = re.compile('\=[\s]+([\d\.]*) KB')