aboutsummaryrefslogtreecommitdiffstats
path: root/old/tests/functional/run_tests.sh
blob: cf55c3bdebc4204a814a06050078fae71f832454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash

MOON_HOME=${1:-.}

echo "Starting Moon Functional Tests on ${MOON_HOME}"

cd ${MOON_HOME}

COMPONENTS="moon_manager moon_wrapper"

for dir in ${COMPONENTS}; do
    echo "Testing component ${dir}"
    cd ${MOON_HOME}/${dir}
    bash ../tests/functional/run_tests_for_component.sh
    cd -
done

# TODO: download tests results