summaryrefslogtreecommitdiffstats
path: root/jjb/functest/functest-exit.sh
blob: 925a3cfbbb760c4dfe10433bdbd93770eea0f948 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

ret_val_file="${HOME}/opnfv/functest/results/${BRANCH##*/}/return_value"
if [ ! -f ${ret_val_file} ]; then
    echo "Return value not found!"
    exit -1
fi

ret_val=`cat ${ret_val_file}`

exit ${ret_val}