diff options
author | Hector Fernandez <hector@iatec.biz> | 2020-07-06 17:22:17 +0200 |
---|---|---|
committer | Hector Fernandez <hector@iatec.biz> | 2020-07-06 17:22:17 +0200 |
commit | 1d51a80b57cc8c80c78d67c85290503997060e9e (patch) | |
tree | b39712b4f90369280e75adfee3ef81a128dfe3e8 /test-cli/test/tests/qethernet.py | |
parent | cd3c8dd78e3bcdd442967583e3814db3701871c0 (diff) | |
download | board-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/qethernet.py')
-rw-r--r-- | test-cli/test/tests/qethernet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-cli/test/tests/qethernet.py b/test-cli/test/tests/qethernet.py index 3b2f197..d38de34 100644 --- a/test-cli/test/tests/qethernet.py +++ b/test-cli/test/tests/qethernet.py @@ -52,13 +52,13 @@ class Qethernet(unittest.TestCase): data = json.loads(p.stdout.decode('ascii')) self.__bwreal = float(data['end']['sum_received']['bits_per_second'])/1024/1024 # save result file - with open('/tmp/station/ethernet-iperf3.json', 'w') as outfile: + with open('/mnt/station_ramdisk/ethernet-iperf3.json', 'w') as outfile: json.dump(data, outfile, indent=4) outfile.close() self.__resultlist.append( { "description": "iperf3 output", - "filepath": "/tmp/station/ethernet-iperf3.json", + "filepath": "/mnt/station_ramdisk/ethernet-iperf3.json", "mimetype": "application/json" } ) |