Use a more traditional for loop to iterate over the tests in execute_regression_tests()
authorFabian Keil <fk@fabiankeil.de>
Sun, 8 May 2011 13:29:59 +0000 (13:29 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sun, 8 May 2011 13:29:59 +0000 (13:29 +0000)
While it doesn't really matter for the number of tests we have,
there's no reason to keep all the test numbers in memory.

tools/privoxy-regression-test.pl

index e5ce374..d353fd0 100755 (executable)
@@ -7,7 +7,7 @@
 # A regression test "framework" for Privoxy. For documentation see:
 # perldoc privoxy-regression-test.pl
 #
-# $Id: privoxy-regression-test.pl,v 1.67 2011/05/08 13:27:53 fabiankeil Exp $
+# $Id: privoxy-regression-test.pl,v 1.68 2011/05/08 13:28:13 fabiankeil Exp $
 #
 # Wish list:
 #
@@ -504,7 +504,7 @@ sub execute_regression_tests () {
         my $failures;
         my $skipped = 0;
 
-        for my $s (0 .. @regression_tests - 1) {
+        for (my $s = 0;  $s < @regression_tests; $s++) {
 
             my $r = 0;