summaryrefslogtreecommitdiff
path: root/test-cli/test/tests/qusb.py
diff options
context:
space:
mode:
authorHector Fernandez <hector@iatec.biz>2020-07-06 17:22:17 +0200
committerHector Fernandez <hector@iatec.biz>2020-07-06 17:22:17 +0200
commit1d51a80b57cc8c80c78d67c85290503997060e9e (patch)
treeb39712b4f90369280e75adfee3ef81a128dfe3e8 /test-cli/test/tests/qusb.py
parentcd3c8dd78e3bcdd442967583e3814db3701871c0 (diff)
downloadboard-1d51a80b57cc8c80c78d67c85290503997060e9e.zip
board-1d51a80b57cc8c80c78d67c85290503997060e9e.tar.gz
board-1d51a80b57cc8c80c78d67c85290503997060e9e.tar.bz2
Modified paths of ram and nfs temporary folders.
Diffstat (limited to 'test-cli/test/tests/qusb.py')
-rw-r--r--test-cli/test/tests/qusb.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/test-cli/test/tests/qusb.py b/test-cli/test/tests/qusb.py
index b5d152e..6302012 100644
--- a/test-cli/test/tests/qusb.py
+++ b/test-cli/test/tests/qusb.py
@@ -34,8 +34,8 @@ class Qusb(unittest.TestCase):
# error = 1 means "no found"
pass
# mount the device
- sh.mkdir("-p", "/tmp/station/pendrive")
- p = sh.mount(device, "/tmp/station/pendrive")
+ sh.mkdir("-p", "/mnt/station_ramdisk/pendrive")
+ p = sh.mount(device, "/mnt/station_ramdisk/pendrive")
if p.exit_code != 0:
self.fail("failed: Unable to mount the USB memory device.")
# execute test
@@ -44,48 +44,48 @@ class Qusb(unittest.TestCase):
try:
p = sh.cp("/var/lib/hwtest-files/usbdatatest.bin",
"/var/lib/hwtest-files/usbdatatest.bin.md5",
- "/tmp/station/pendrive")
+ "/mnt/station_ramdisk/pendrive")
except sh.ErrorReturnCode as e:
try:
- sh.umount("/tmp/station/pendrive")
+ sh.umount("/mnt/station_ramdisk/pendrive")
except sh.ErrorReturnCode:
pass
- sh.rmdir("/tmp/station/pendrive")
+ sh.rmdir("/mnt/station_ramdisk/pendrive")
self.fail("failed: Unable to copy files to the USB memory device.")
# check if the device is still mounted
- if not os.path.ismount("/tmp/station/pendrive"):
- sh.rm("/tmp/station/pendrive/*")
- sh.rmdir("/tmp/station/pendrive")
+ if not os.path.ismount("/mnt/station_ramdisk/pendrive"):
+ sh.rm("/mnt/station_ramdisk/pendrive/*")
+ sh.rmdir("/mnt/station_ramdisk/pendrive")
self.fail("failed: USB device unmounted during/after copying files.")
# check MD5
try:
- p = sh.md5sum("/tmp/station/pendrive/usbdatatest.bin")
+ p = sh.md5sum("/mnt/station_ramdisk/pendrive/usbdatatest.bin")
except sh.ErrorReturnCode as e:
try:
- sh.umount("/tmp/station/pendrive")
+ sh.umount("/mnt/station_ramdisk/pendrive")
except sh.ErrorReturnCode:
pass
- sh.rmdir("/tmp/station/pendrive")
+ sh.rmdir("/mnt/station_ramdisk/pendrive")
self.fail("failed: Unable to calculate MD5 of the copied file.")
newmd5 = p.stdout.decode().split(" ")[0]
- with open('/tmp/station/pendrive/usbdatatest.bin.md5', 'r') as outfile:
+ with open('/mnt/station_ramdisk/pendrive/usbdatatest.bin.md5', 'r') as outfile:
oldmd5 = outfile.read().rstrip("\n")
outfile.close()
if newmd5 != oldmd5:
try:
- sh.umount("/tmp/station/pendrive")
+ sh.umount("/mnt/station_ramdisk/pendrive")
except sh.ErrorReturnCode:
pass
- sh.rmdir("/tmp/station/pendrive")
+ sh.rmdir("/mnt/station_ramdisk/pendrive")
self.fail("failed: MD5 check failed.")
# delete copied files
- sh.rm("-f", "/tmp/station/pendrive/usbdatatest.bin", "/tmp/station/pendrive/usbdatatest.bin.md5")
+ sh.rm("-f", "/mnt/station_ramdisk/pendrive/usbdatatest.bin", "/mnt/station_ramdisk/pendrive/usbdatatest.bin.md5")
# Finish
try:
- sh.umount("/tmp/station/pendrive")
+ sh.umount("/mnt/station_ramdisk/pendrive")
except sh.ErrorReturnCode:
pass
- sh.rmdir("/tmp/station/pendrive")
+ sh.rmdir("/mnt/station_ramdisk/pendrive")
def getresults(self):
return self.__resultlist