blob: 10a68f23a130e2fd90e86f55ca5050cc3d70b974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import unittest
import sh
class Qnand(unittest.TestCase):
params = None
__device = "10M"
# varlist: device
def __init__(self, testname, testfunc, varlist):
self.params = varlist
super(Qnand, self).__init__(testfunc)
if "device" in varlist:
self.__device = varlist["device"]
else:
raise Exception('device param inside Qnand must be defined')
self._testMethodDoc = testname
def execute(self):
try:
sh.nandtest("-m", self.__device, _out="/dev/null")
except sh.ErrorReturnCode as e:
self.fail("failed: could not complete nandtest command")
|