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