diff --git a/build/tools/travis-ci.sh b/build/tools/travis-ci.sh index 04722165f9..2bb2c851c9 100755 --- a/build/tools/travis-ci.sh +++ b/build/tools/travis-ci.sh @@ -66,6 +66,12 @@ case $wxTOOLSET in pushd tests && ./test && popd echo -en 'travis_fold:end:script.testing\\r' + if [ "$(uname -s)" = "Linux" ]; then + echo 'Testing GUI...' && echo -en 'travis_fold:start:script.testing_gui\\r' + pushd tests && xvfb-run -a ./test_gui && popd + echo -en 'travis_fold:end:script.testing_gui\\r' + fi + echo 'Building samples...' && echo -en 'travis_fold:start:script.samples\\r' (test "$wxSKIP_SAMPLES" && echo 'SKIPPED') || make samples echo -en 'travis_fold:end:script.samples\\r'