summaryrefslogtreecommitdiff
path: root/test-cli/test/tests/qnand.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-cli/test/tests/qnand.py')
-rw-r--r--test-cli/test/tests/qnand.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/test-cli/test/tests/qnand.py b/test-cli/test/tests/qnand.py
index 10a68f2..7ff7cb2 100644
--- a/test-cli/test/tests/qnand.py
+++ b/test-cli/test/tests/qnand.py
@@ -18,6 +18,21 @@ class Qnand(unittest.TestCase):
def execute(self):
try:
- sh.nandtest("-m", self.__device, _out="/dev/null")
+ p = sh.nandtest("-m", self.__device)
+ # save result
+ with open('/tmp/nand-nandtest.txt', 'w') as outfile:
+ n = outfile.write(p.stdout.decode('ascii'))
+
except sh.ErrorReturnCode as e:
self.fail("failed: could not complete nandtest command")
+
+ def getresults(self):
+ # resultlist is a python list of python dictionaries
+ resultlist = [
+ {
+ "desc": "nandtest output",
+ "data": "/tmp/nand-nandtest.txt",
+ "type": "file"
+ }
+ ]
+ return resultlist