~maus-maintainers/maus/release-candidate

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
set -e

if [ -z "${MAUS_ROOT_DIR}" ]; then  # see if the variable exists yet
    echo "ERROR: \$MAUS_ROOT_DIR not set"
    exit 1;
fi

echo
echo "INFO: Running the full MAUS test suite"
echo

bash ${MAUS_ROOT_DIR}/tests/unit_tests.bash
if [ $? != 0 ]
then
    exit 1
fi

bash ${MAUS_ROOT_DIR}/tests/style_tests.bash
if [ $? != 0 ]
then
    exit 1
fi

bash ${MAUS_ROOT_DIR}/tests/application_tests.bash
if [ $? != 0 ]
then
    exit 1
fi