diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2023-05-24 14:35:21 +0000 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2023-05-31 07:54:57 +0000 |
commit | ecc62413b8ee33ecf886b2f4161b486c47db38de (patch) | |
tree | 3cbb15401aa4a23c56a8f0529e66b6bc43323c61 /common/scripts/agl-screenshot-test.sh | |
parent | af58e6d6d4d1fdb4359c878df30c4184c72c76ef (diff) |
SPEC-4816: Fix upload in agl-extend-test.sh
agl-extend-test.sh fail to upload a zip file, since it give the
directory instead of the file to upload.
While fixing this, add some extra test and debug around upload of files.
Bug-AGL: SPEC-4816
Fixes: 2e5067e302bc ("qa-testdefinitions: add yaml and script for agl extend test")
Change-Id: Ieeefa239398a82b2156391dfe8f58f654a6a29b3
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Diffstat (limited to 'common/scripts/agl-screenshot-test.sh')
-rwxr-xr-x | common/scripts/agl-screenshot-test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/scripts/agl-screenshot-test.sh b/common/scripts/agl-screenshot-test.sh index 2e603c1..9eb0085 100755 --- a/common/scripts/agl-screenshot-test.sh +++ b/common/scripts/agl-screenshot-test.sh @@ -125,6 +125,7 @@ set -x FINALRET=127 for i in /home/agl-driver/agl-screenshot-*.png ; do if [ -x ./artiproxy-upload.sh ];then + echo "DEBUG: upload screenshot $i" ./artiproxy-upload.sh $i $(basename $i) fi set +x |