blob: 51dfcb14ac02eac83d2edffcefda5ca1ff5beb97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
pre_check=`which agl-test`
if [ -n "$pre_check" ] ; then
agl-test
echo "agl-extend-test is present"
else
echo "agl-test is not installed, abort this test"
exit 127
fi
if [ -x ./artiproxy-upload.sh ] ; then
LOG_DIR='/var/run/agl-test/logs/log-to-report'
ZIP_FILE=`ls ${LOG_DIR} | grep agl-test-log*`
if [ -z $ZIP_FILE ] ; then
echo "Cannot find agl-extend-test log"
exit 1
fi
echo "DEBUG: upload LOG_DIR=${LOG_DIR}XXX"
echo "DEBUG: upload ZIP_FILE=${ZIP_FILE}XXX"
./artiproxy-upload.sh "$LOG_DIR/$ZIP_FILE" "$ZIP_FILE"
if [ $? -eq 1 ] ; then
echo "Upload of ${ZIP_FILE} failed"
exit 1
else
echo "Upload of test report successful"
exit 0
fi
else
echo "The file artiproxy-upload.sh does not exist"
exit 126
fi
|