summaryrefslogtreecommitdiffstats
path: root/runtests.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-09-03 15:59:08 +0200
committerjocuri%softhome.net <>2004-09-03 15:59:08 +0200
commite05cbb077ce6d23e6b35506c3fdd1e0a3bdb488d (patch)
tree1c44df234a7a2f9bbfc69e0dc8c2524f9437d733 /runtests.pl
parentbd0215fc26249dcd3e1fbac00e3b7e7d9b4d8b4b (diff)
downloadbugzilla-e05cbb077ce6d23e6b35506c3fdd1e0a3bdb488d.tar.gz
bugzilla-e05cbb077ce6d23e6b35506c3fdd1e0a3bdb488d.tar.xz
Bug 257267: allow trimming leading zeros when typing the test number in the testing suite; patch by GavinS <bugzilla@chimpychompy.org>; r=vladd, a=myk.
Diffstat (limited to 'runtests.pl')
-rwxr-xr-xruntests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.pl b/runtests.pl
index d5059fdc0..ad6898b23 100755
--- a/runtests.pl
+++ b/runtests.pl
@@ -34,7 +34,7 @@ foreach (@ARGV) {
$verbose = 1;
}
else {
- $onlytest = $_;
+ $onlytest = sprintf("%0.3d",$_);
}
}