commit | c421164e16db7233ef8fcc4ecfd83f2979aec16a | [log] [tgz] |
---|---|---|
author | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | Thu Aug 02 21:00:51 2007 +0000 |
committer | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | Thu Aug 02 21:00:51 2007 +0000 |
tree | d43ba5f3b61dbe43035d43cd8a7c640d18cb96b8 | |
parent | 890fc5bad8be7a4d7ecb4f9d9cddd2fb6de25f64 [diff] [blame] |
Enable kernbench to take a dir argument git-svn-id: http://test.kernel.org/svn/autotest/trunk@608 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/autotest_utils.py b/client/bin/autotest_utils.py index a3bf50b..bc4f117 100755 --- a/client/bin/autotest_utils.py +++ b/client/bin/autotest_utils.py
@@ -509,3 +509,8 @@ results = [] for result in pattern.findall(results): results.append(tuple([to_seconds(elt) for elt in result])) + + +def pickle_load(filename): + return pickle.load(open(filename, 'r')) +