mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
405 B
14 lines
405 B
#!/bin/bash
|
|
|
|
if [[ -d "/build/Testing" ]] ; then
|
|
echo
|
|
echo "##################################################"
|
|
echo "##### Rerunning failed tests in verbose mode #####"
|
|
echo "##################################################"
|
|
ctest -V --rerun-failed
|
|
else
|
|
echo "Not rerunning tests. ctest hasn't run yet."
|
|
fi
|
|
# This script should fail so that the entire script will fail.
|
|
exit 1
|