Skip Menu |

This queue is for tickets about the Test-NeedsDisplay CPAN distribution.

Report information
The Basics
Id: 106699
Status: new
Priority: 0/
Queue: Test-NeedsDisplay

People
Owner: Nobody in particular
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.07
Fixed in: (no value)



Subject: Random test failures
For some time I experience random test failures: $ while (prove -v -b t/10_run.t t/11_run.t); do :; done t/10_run.t .. # No DISPLAY. Looking for xvfb-run... # Restarting with xvfb-run... 1..2 ok 1 - running xeyes # PID 11643 ok 2 ok t/11_run.t .. # No DISPLAY. Looking for xvfb-run... # Restarting with xvfb-run... 1..2 Error: Can't open display: :99 ok 1 - running xeyes # PID 11661 ok 2 /usr/bin/xvfb-run: line 171: kill: (11657) - No such process Dubious, test returned 1 (wstat 256, 0x100) All 2 subtests passed See <https://bugzilla.redhat.com/show_bug.cgi?id=1248968> for more details. While there are ways how to improve xvfb-run, the key limitation is in Test::NeedsDisplay which cannot be used more than once on the same host at the same time. Attached patch removes the limitation and fixes the random test failures for me.
Subject: Test-NeedsDisplay-1.07-Use-non-conflicting-display-numbers.patch
From 1b3f53f50706d2cb12651e30bfee3cf326e5e07c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Thu, 27 Aug 2015 17:47:37 +0200 Subject: [PATCH] Use non-conflicting display numbers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit xfvb-run insists on :99 display. It prevents from running multiple Test::NeedsDisplay in parallel. This patch instructs xvfb-run to use a free display number. It also prevents from random failures I noticed in <https://bugzilla.redhat.com/show_bug.cgi?id=1248968>. Signed-off-by: Petr Písař <ppisar@redhat.com> diff --git a/lib/Test/NeedsDisplay.pm b/lib/Test/NeedsDisplay.pm index 6ff8448..275e6d8 100644 --- a/lib/Test/NeedsDisplay.pm +++ b/lib/Test/NeedsDisplay.pm @@ -107,6 +107,7 @@ sub import { print "# Restarting with xvfb-run...\n"; exec( $xvfb_run, + '-a', $^X, ($INC{'blib.pm'} ? '-Mblib' : ()), ($INC{'perl5db.pl'} ? '-d' : ()), -- 2.4.3