From: jocuri%softhome.net <> Date: Fri, 3 Sep 2004 13:59:31 +0000 (+0000) Subject: Bug 257267: allow trimming leading zeros when typing the test number in the testing... X-Git-Tag: bugzilla-2.18rc3~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bb5fd66e4531df2f98f31d63b03a571e9604de9;p=thirdparty%2Fbugzilla.git Bug 257267: allow trimming leading zeros when typing the test number in the testing suite; patch by GavinS ; r=vladd, a=myk. --- diff --git a/runtests.pl b/runtests.pl index d5059fdc09..ad6898b239 100755 --- a/runtests.pl +++ b/runtests.pl @@ -34,7 +34,7 @@ foreach (@ARGV) { $verbose = 1; } else { - $onlytest = $_; + $onlytest = sprintf("%0.3d",$_); } }