summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/run_cluster_tests.sh
blob: 6917fd931503d6f533092bd901d0f5f33f82b057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

CTDB_TEST_REAL_CLUSTER=1
export CTDB_TEST_REAL_CLUSTER

if [ -n "$*" ]; then
    tests/scripts/run_tests -s $* || exit 1
else
    tests/scripts/run_tests -s tests/simple/*.sh tests/complex/*.sh || exit 1
fi

echo "All OK"
exit 0