X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=tools%2Fprivoxy-regression-test.pl;h=e75d2cc2edd44d44921abbcf90cac25e21fecfec;hb=ed5b8d7f74bc21dc4c88c35b58e9657f0a611af2;hp=15e213d1a372f2153d881a5d3ca3c162e3bf0bc2;hpb=db831c7f5d8f459e3eaf8ebea7e5c6250c67fc67;p=privoxy.git diff --git a/tools/privoxy-regression-test.pl b/tools/privoxy-regression-test.pl index 15e213d1..e75d2cc2 100755 --- a/tools/privoxy-regression-test.pl +++ b/tools/privoxy-regression-test.pl @@ -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.58 2009/10/29 16:46:42 fabiankeil Exp $ +# $Id: privoxy-regression-test.pl,v 1.200 2010/01/03 13:46:38 fk Exp $ # # Wish list: # @@ -40,7 +40,7 @@ use strict; use Getopt::Long; use constant { - PRT_VERSION => 'Privoxy-Regression-Test 0.3', + PRT_VERSION => 'Privoxy-Regression-Test 0.4', CURL => 'curl', @@ -1497,7 +1497,7 @@ sub parse_cli_options () { 'test-number=s' => \$cli_options{'test-number'}, 'verbose' => \$cli_options{'verbose'}, 'version' => sub {print_version && exit(0)} - ); + ) or exit(1); $log_level |= $cli_options{'debug'}; }