We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6efd8f9 commit 57bbb9bCopy full SHA for 57bbb9b
t/porting/utils.t
@@ -33,13 +33,15 @@ find_git_or_skip('all');
33
34
my @maybe;
35
36
-open my $fh, '<', 'MANIFEST' or die "Can't open MANIFEST: $!";
37
-while (<$fh>) {
38
- push @maybe, $1 if m!^(Porting/\S+)!;
+foreach my $manifest_file ('MANIFEST','Porting/MANIFEST.dev') {
+ open my $fh, '<', $manifest_file or die "Can't open '$manifest_file': $!";
+ while (<$fh>) {
39
+ push @maybe, $1 if m!^(Porting/\S+)!;
40
+ }
41
+ close $fh or die "Failed to close '$manifest_file': $!";
42
}
-close $fh or die $!;
43
-open $fh, '<', 'utils.lst' or die "Can't open utils.lst: $!";
44
+open my $fh, '<', 'utils.lst' or die "Can't open utils.lst: $!";
45
while (<$fh>) {
46
die unless m!^(\S+)!;
47
push @maybe, $1;
0 commit comments