Skip to content

Commit 6ba4627

Browse files
committed
TEST
1 parent 19a7e1c commit 6ba4627

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

t/sharedir.t

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ SKIP: {
8585
run_ok('make', 'install');
8686

8787
my $dir = catdir($install, qw/lib perl5 auto share dist TestDist/);
88-
ok(-d $dir, 'Sharedir has been created');
88+
ok(-d $dir, 'Sharedir has been created') or diag $dir;
89+
open my $fh, '<', 'Makefile';
90+
diag <$fh>;
8991
ok(-e catfile($dir, 'normalfile'), 'File in sharedir has been created');
9092
ok(-e catfile($dir, qw/dots .dotdir .dotfile/), 'A dotfile in a dotdir installed');
9193
}

0 commit comments

Comments
 (0)