Loading tests/runtests.pl +6 −2 Original line number Diff line number Diff line Loading @@ -398,10 +398,14 @@ if ( $TESTCASES eq "all") { my @cmds = grep { /^command/ && -f "$TESTDIR/$_" } readdir(DIR); closedir DIR; $TESTCASES=""; for(@cmds) { $TESTCASES=""; # start with no test cases # cut off everything but the digits for(@cmds) { $_ =~ s/[a-z\/\.]*//g; } # the the numbers from low to high for(sort { $a <=> $b } @cmds) { $TESTCASES .= " $_"; } } Loading Loading
tests/runtests.pl +6 −2 Original line number Diff line number Diff line Loading @@ -398,10 +398,14 @@ if ( $TESTCASES eq "all") { my @cmds = grep { /^command/ && -f "$TESTDIR/$_" } readdir(DIR); closedir DIR; $TESTCASES=""; for(@cmds) { $TESTCASES=""; # start with no test cases # cut off everything but the digits for(@cmds) { $_ =~ s/[a-z\/\.]*//g; } # the the numbers from low to high for(sort { $a <=> $b } @cmds) { $TESTCASES .= " $_"; } } Loading