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

[[ "$PUSH_RESULTS_TO_DB" == "true" ]] && flags+="-r"
cmd="python ${FUNCTEST_REPO_DIR}/functest/ci/run_tests.py -t all ${flags}"

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