2014-04-07 12:38:09 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# If $top_srcdir has not been set by automake, import the test environment
|
|
|
|
if [ -z "$top_srcdir" ]; then
|
|
|
|
top_srcdir="$(dirname "$0")/.."
|
|
|
|
. ${top_srcdir}/tests/testenv.sh
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If no tests were selected, select all of them
|
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
set -- "${top_srcdir}"/tests/*_tests
|
|
|
|
fi
|
|
|
|
|
2017-01-09 02:09:07 +00:00
|
|
|
exec nosetests-3.5 -v --exclude=logpicker -a \!acceptance,\!slow "$@"
|