summaryrefslogtreecommitdiff
path: root/tsp
diff options
context:
space:
mode:
authorAleksander Mistewicz <a.mistewicz@samsung.com>2016-07-08 14:52:09 +0200
committerAleksander Mistewicz <a.mistewicz@samsung.com>2016-10-07 17:29:30 +0200
commit793f97c8416e4abdc42eec8ef3e0253ca5c5279e (patch)
tree45655b84d96afbe208e432cd09765d5fb7fb5e2d /tsp
parent79a3248c57098529aa071b09bcfd1c39f8ad4d18 (diff)
downloadmajor-793f97c8416e4abdc42eec8ef3e0253ca5c5279e.tar.gz
major-793f97c8416e4abdc42eec8ef3e0253ca5c5279e.tar.bz2
major-793f97c8416e4abdc42eec8ef3e0253ca5c5279e.zip
Log every finished job to /tmp/testlab.log
Add quiet param to wget in tsp/scripts/download_image.py Add tsp/scripts/log.sh which writes all its params to /tmp/testlab.log Add env variable in tsp/common.sh: TS_ONFINISH if TSP_DIR is set Change-Id: I87510f3fe73dc20d1842075cdf77186b8d298581 Signed-off-by: Aleksander Mistewicz <a.mistewicz@samsung.com>
Diffstat (limited to 'tsp')
-rwxr-xr-xtsp/common.sh1
-rwxr-xr-xtsp/scripts/download_image.py2
-rwxr-xr-xtsp/scripts/log.sh2
3 files changed, 4 insertions, 1 deletions
diff --git a/tsp/common.sh b/tsp/common.sh
index 5356091..8dd90a1 100755
--- a/tsp/common.sh
+++ b/tsp/common.sh
@@ -27,6 +27,7 @@ die() {
exit ${2:-1}
}
+test -z "${TSP_DIR}" || export TS_ONFINISH="${TSP_DIR}/scripts/log.sh"
WS="${HOME}/ws"
WS_WATCHER="${WS}/watcher"
diff --git a/tsp/scripts/download_image.py b/tsp/scripts/download_image.py
index f3d7a6a..895ea5c 100755
--- a/tsp/scripts/download_image.py
+++ b/tsp/scripts/download_image.py
@@ -197,7 +197,7 @@ class ImageDownloader:
def get(self, urls, md5sum):
while True:
- subprocess.call(["wget", "-c"] + urls)
+ subprocess.call(["wget", "-cq"] + urls)
if not self.check_md5(md5sum):
break
time.sleep(60)
diff --git a/tsp/scripts/log.sh b/tsp/scripts/log.sh
new file mode 100755
index 0000000..bd29684
--- /dev/null
+++ b/tsp/scripts/log.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+echo $@ >> /tmp/testlab.log