Attempt to get the backtrace from the C++ unit test executable

Turns out that it's still crashing on startup in Travis,
but no longer giving the old error message

Xlib: extension "RANDR" missing on display ":99.0".

I also removed the old line that ran test_executor.sh only if WML tests had
failed. That made no sense.
This commit is contained in:
Jyrki Vesterinen 2018-02-03 13:50:38 +02:00
parent f40a4966bc
commit 7ca5a0df64

View file

@ -92,7 +92,7 @@ else
if [ "$BOOST_TEST" == "true" ]; then
echo "Executing boost unit tests"
./utils/travis/test_wrapper.sh
./utils/travis/test_executor.sh
RET=$?
if [ $RET != 0 ]; then
EXIT_VAL=$RET
@ -102,7 +102,6 @@ else
if [ -f "errors.log" ]; then
echo -e "\n*** \n*\n* Errors reported in wml unit tests, here is errors.log...\n*\n*** \n"
cat errors.log
./utils/travis/test_executor.sh
fi
exit $EXIT_VAL