tests: fix running make check with both parallel make and xvfb

Before, the xvfbs would all try to be on DISPLAY=:99, which
caused issues.
This commit is contained in:
Michael Henning 2013-05-12 19:36:27 -04:00
parent aaaa9eef85
commit 2df4fa2d6f
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ TESTS_ENVIRONMENT = \
# Run tests with xvfb-run if available
if HAVE_XVFB_RUN
TESTS_ENVIRONMENT += $(XVFB_RUN) --server-args="-screen 0 1280x1024x24"
TESTS_ENVIRONMENT += $(XVFB_RUN) --auto-servernum --server-args="-screen 0 1280x1024x24"
endif