This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c855ea6
)
Just sorting to guarantee order is not enough.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 27 Nov 2001 00:45:55 +0000
(
00:45
+0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 27 Nov 2001 00:45:55 +0000
(
00:45
+0000)
(Think EBCDIC.)
p4raw-id: //depot/perl@13296
lib/ExtUtils/Manifest.t
patch
|
blob
|
blame
|
history
diff --git
a/lib/ExtUtils/Manifest.t
b/lib/ExtUtils/Manifest.t
index
f98517e
..
f531406
100644
(file)
--- a/
lib/ExtUtils/Manifest.t
+++ b/
lib/ExtUtils/Manifest.t
@@
-113,7
+113,7
@@
ok( exists( ExtUtils::Manifest::manifind()->{$quux} ), "manifind found $quux" );
# only MANIFEST and foo are in the manifest
my $files = maniread();
is( keys %$files, 2, 'two files found' );
-is( join(' ', sort
keys %$files), 'MANIFEST foo
', 'both files found' );
+is( join(' ', sort
{ lc($a) cmp lc($b) } keys %$files), 'foo MANIFEST
', 'both files found' );
# poison the manifest, and add a comment that should be reported
add_file( 'MANIFEST', 'none #none' );