summaryrefslogtreecommitdiffstats
path: root/jjb/functest/functest-loop.sh
blob: a590d9f952ac4d26de1c3af4cb32f5c48c4358c1 (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="run_tests -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