summaryrefslogtreecommitdiff
path: root/test-cli/test/tests/qram.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-cli/test/tests/qram.py')
-rw-r--r--test-cli/test/tests/qram.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/test-cli/test/tests/qram.py b/test-cli/test/tests/qram.py
index 5a7734a..561e980 100644
--- a/test-cli/test/tests/qram.py
+++ b/test-cli/test/tests/qram.py
@@ -23,6 +23,12 @@ class Qram(unittest.TestCase):
def execute(self):
try:
- sh.memtester(self.__memsize, "1", _out="/dev/null")
+ p = sh.memtester(self.__memsize, "1", _out="/dev/null")
+
except sh.ErrorReturnCode as e:
self.fail("failed: could not complete memtester command")
+
+ def getresults(self):
+ # resultlist is a python list of python dictionaries
+ resultlist = []
+ return resultlist