summaryrefslogtreecommitdiffstats
path: root/jjb/functest/functest-loop.sh
blob: 00a5f135b3bd19bbb20b0ba6263d6ed14c93561e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
set +e

[[ "$PUSH_RESULTS_TO_DB" == "true" ]] && flags+="-r"
if [ "$BRANCH" == 'master' ]; then
    cmd="run_tests -t all ${flags}"
else
    cmd="python ${FUNCTEST_REPO_DIR}/functest/ci/run_tests.py -t all ${flags}"
fi

container_id=$(docker ps -a | grep opnfv/functest | awk '{print $1}' | head -1)
docker exec $container_id $cmd

ret_value=$?
ret_val_file="${HOME}/opnfv/functest/results/${BRANCH##*/}/return_value"
echo ${ret_value}>${ret_val_file}

exit 0