summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-08-07 20:11:34 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-08-07 20:11:34 +0000
commit5f6a9a6ca8fb6111ebc0ff84d4dd761333c4f748 (patch)
treecfc3734f0d54b92c203f86af493028f5d7fef582 /lib
parent741e61b9f66cdb73307941b052aa1bd4e40706d2 (diff)
Sort the list of testsuite parameter files alphabetically in the menu.
This closes PR Cactus-757. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2299 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib')
-rw-r--r--lib/sbin/Runtest.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/Runtest.pl b/lib/sbin/Runtest.pl
index c436b00b..8e8e95e4 100644
--- a/lib/sbin/Runtest.pl
+++ b/lib/sbin/Runtest.pl
@@ -91,7 +91,7 @@ else
{
$command = &defprompt("Enter command to run executable"," ");
}
-$tests = &defprompt("Run All tests or go to Menu","All");
+$tests = &defprompt("Run (A)ll tests or go to (M)enu","All");
@@ -125,7 +125,7 @@ else
$thisdir = `pwd`;
chop($thisdir);
chdir "$T${sep}test" || die "Unable to chdir to $T${sep}test";
- while ($file=<*.par>)
+ foreach $file (sort <*.par>)
{
$database{"\U$T TESTFILE\E"} = $file;
push(@testfiles, $file);