#!/bin/sh

cd tests

# Run all tests, don't stop on first failure
# Don't use valgrind if it is found
# Use automake-style output
# Run four tests in parallel
# Print log output on failure
# Don't run the flaky or timing dependent tests
./runtests.pl -a -n -am -j4 -p !flaky !timing-dependent
