mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00
Another 'xterm' test fix
This commit is contained in:
parent
658a36b7e6
commit
596ef164d3
1 changed files with 6 additions and 0 deletions
|
@ -9,6 +9,12 @@ setlocale( LC_ALL, "C" );
|
|||
use FindBin qw($Bin $Script);
|
||||
use lib "$Bin/../lib";
|
||||
|
||||
# fix path for finding our fake xterm on headless systems that do
|
||||
# not have it installed, such as TravisCI via github
|
||||
BEGIN {
|
||||
$ENV{PATH} = $ENV{PATH} . ':' . $Bin . '/bin';
|
||||
}
|
||||
|
||||
use Test::More;
|
||||
use Test::Trap;
|
||||
use File::Which qw(which);
|
||||
|
|
Loading…
Add table
Reference in a new issue