summaryrefslogtreecommitdiffstats
path: root/jjb/functest/functest-suite.sh
blob: 469a5772684e980631a79704c83d4229b5028d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

container_id=$(docker ps -a | grep opnfv/functest | awk '{print $1}' | head -1)
if [ -z $container_id ]; then
    echo "Functest container not found"
    exit 1
fi

global_ret_val=0

tests=($(echo $FUNCTEST_SUITE_NAME | tr "," "\n"))
for test in ${tests[@]}; do
    cmd="run_tests -t $test"
    docker exec $container_id $cmd
    let global_ret_val+=$?
done

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

exit 0