The sorting seems to happen now automatically.
Jarkko Hietaniemi [Sat, 12 May 2001 13:39:43 +0000 (13:39 +0000)]
p4raw-id: //depot/perl@10090

t/lib/glob-basic.t

index fda0f72..6c12c26 100755 (executable)
@@ -138,9 +138,8 @@ chdir "pteerslt";
 @f_alpha = qw(Ax.pl aY.pl Bx.pl bY.pl Cx.pl cY.pl);
 if ('a' lt 'A') { # EBCDIC char sets sort lower case before UPPER
     @f_names = sort(@f_names);
-    @f_alpha = qw(aY.pl Ax.pl bY.pl Bx.pl cY.pl Cx.pl);
 }
-if ($^O eq 'VMS') {
+if ($^O eq 'VMS') { # VMS is happily caseignorant
     @f_alpha = qw(ax.pl ay.pl bx.pl by.pl cx.pl cy.pl);
     @f_names = @f_alpha;
 }