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.
This commit is contained in:
Ilya Sinitsyn
2020-10-15 16:40:12 +07:00
committed by Vadim Zeitlin
parent b95a79d74e
commit fe7230e19c

View File

@@ -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