From: Micah Cowan Date: Thu, 6 Nov 2008 19:38:16 +0000 (-0800) Subject: use strict in run-px. X-Git-Tag: v1.13~393 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=0dd8271f32f705048ef87c898ec90d3813d68fb8 use strict in run-px. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 36bc35dc..19270b6f 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2008-11-06 Micah Cowan + + * run-px: Use strict (thanks Steven Schubiger!). + 2008-06-22 Micah Cowan * Test-proxied-https-auth.px: Shift exit code so it falls in the diff --git a/tests/run-px b/tests/run-px index 50db5819..05f6eda6 100755 --- a/tests/run-px +++ b/tests/run-px @@ -1,5 +1,6 @@ #!/usr/bin/env perl use warnings; +use strict; die "Please specify the top source directory.\n" if (!@ARGV); my $top_srcdir = shift @ARGV;