From fe7230e19c0ad7d567cc7e94287e2e3a31f405cc Mon Sep 17 00:00:00 2001 From: Ilya Sinitsyn Date: Thu, 15 Oct 2020 16:40:12 +0700 Subject: [PATCH] Suppress spurious accessibility bus errors in Travis CI builds These errors don't matter, so just avoid them in the build logs by setting NO_AT_BRIDGE environment variable. --- build/tools/travis-ci.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/tools/travis-ci.sh b/build/tools/travis-ci.sh index db4bbe6057..04861afcc8 100755 --- a/build/tools/travis-ci.sh +++ b/build/tools/travis-ci.sh @@ -8,6 +8,10 @@ wxPROC_COUNT=`getconf _NPROCESSORS_ONLN` ((wxPROC_COUNT++)) wxBUILD_ARGS="-j$wxPROC_COUNT" +# Setting this variable suppresses "Error retrieving accessibility bus address" +# messages from WebKit tests that we're not interested in. +export NO_AT_BRIDGE=1 + case $wxTOOLSET in cmake) if [ -z $wxCMAKE_TESTS ]; then wxCMAKE_TESTS=CONSOLE_ONLY; fi