Skip to content

Commit e3505df

Browse files
committed
patch 8.0.0077
Problem: The GUI code is not tested by Travis. Solution: Install the virtual framebuffer.
1 parent 79cbdcb commit e3505df

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ before_install:
6969
# Lua is not installed on Travis OSX
7070
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi
7171

72+
# Start virtual framebuffer to be able to test the GUI.
73+
before_script:
74+
- "export DISPLAY=:99.0"
75+
- "sh -e /etc/init.d/xvfb start"
76+
- sleep 3 # give xvfb some time to start
77+
7278
script:
7379
- NPROC=$(getconf _NPROCESSORS_ONLN)
7480
- if [ "$CHECK_AUTOCONF" = "yes" -a "$CC" = "gcc" ]; then make -C src autoconf; fi

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
77,
767769
/**/
768770
76,
769771
/**/

0 commit comments

Comments
 (0)