eigen/test/runtest.sh
Gael Guennebaud 522e24f2d7 update of the testing framework:
replaced the QTestLib framework my custom macros
and a (optional) custom script to run the tests from ctest.
2008-05-22 12:18:55 +00:00

29 lines
516 B
Bash
Executable File

#!/bin/bash
black='\E[30m'
red='\E[31m'
green='\E[32m'
yellow='\E[33m'
blue='\E[34m'
magenta='\E[35m'
cyan='\E[36m'
white='\E[37m'
if make test_$1 > /dev/null 2> .runtest.log ; then
if ! ./test_$1 > /dev/null 2> .runtest.log ; then
echo -e $red Test $1 failed: $black
echo -e $blue
cat .runtest.log
echo -e $black
exit 1
else
echo -e $green Test $1 passed$black
fi
else
echo -e $red Build of target $1 failed: $black
echo -e $blue
cat .runtest.log
echo -e $black
exit 1
fi