Skip to content

Commit

Permalink
Attempt to get the backtrace from the C++ unit test executable
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jyrkive committed Feb 3, 2018
1 parent f40a496 commit 7ca5a0d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docker_run.sh
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7ca5a0d

Please sign in to comment.