Skip to content

Commit 555831e

Browse files
Eugen Konkovtonycoz
authored andcommitted
Do not fail on minimized systems
1 parent b1b9728 commit 555831e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/perl5db.t

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3012,6 +3012,10 @@ SKIP:
30123012
local $ENV{LANG} = "C";
30133013
local $ENV{LC_MESSAGES} = "C";
30143014
local $ENV{LC_ALL} = "C";
3015+
my $out = `/usr/bin/man --version`;
3016+
if ($out =~ /^This system has been minimized/) {
3017+
skip "No man. This system has been minimized...", 1;
3018+
}
30153019
my $wrapper = DebugWrap->new(
30163020
{
30173021
cmds =>

0 commit comments

Comments
 (0)