From: jocuri%softhome.net <> Date: Fri, 3 Sep 2004 13:59:08 +0000 (+0000) Subject: Bug 257267: allow trimming leading zeros when typing the test number in the testing... X-Git-Tag: bugzilla-2.19.1~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e05cbb077ce6d23e6b35506c3fdd1e0a3bdb488d;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",$_); } }