aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/run_tests.sh
blob: d374d17f69a60eed3e869fbdf74276afac4ebfd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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
done

# TODO: download tests results