It seems to be mostly GUI and X clipboard code that
is now less covered.
In the diff of patch 8.2.0377 I see:
```
@@ -73,9 +73,13 @@ anchors:
fi
before_script:
# Start virtual framebuffer to be able to test the GUI. Does
not work on OS X.
- - export DISPLAY=:99.0
- - sh -e /etc/init.d/xvfb start && sleep 3
- - sudo modprobe snd-dummy
+ - |
+ if [[ "${TEST}" =~ gui ]]; then
+ export DISPLAY=:99.0
+ sh -e /etc/init.d/xvfb start && sleep 3
+ fi
+ - |
+ [ "${TRAVIS_CPU_ARCH}" = s390x ] || sudo modprobe snd-dummy
- sudo usermod -a -G audio $USER
- do_test() { sg audio "sg $(id -gn) '$*'"; }
```
It might be elated to that. Perhaps we don't enter
the 'if' branch for any platform?
Dominique