From: Micah Cowan Date: Thu, 12 Jun 2008 08:31:54 +0000 (-0700) Subject: Better cleanup for Test-proxied-https-auth.px. X-Git-Tag: v1.13~421^2~12^2~5 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=484ba18aa724d1b502c886e94345016e45886ed6 Better cleanup for Test-proxied-https-auth.px. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 73d93a2f..3ce03f98 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2008-06-12 Micah Cowan + + * Test-proxied-https-auth.px: Better cleanup, so next test can + open the port. + 2008-05-31 Micah Cowan * Test-N-current.px: Ensure we catch failures. diff --git a/tests/Test-proxied-https-auth.px b/tests/Test-proxied-https-auth.px index 22606589..b1de60b9 100755 --- a/tests/Test-proxied-https-auth.px +++ b/tests/Test-proxied-https-auth.px @@ -87,7 +87,7 @@ sub fork_server { } system ('rm -f needs-auth.txt'); -&fork_server; +my $pid = &fork_server; sleep 1; my $cmdline = $WgetTest::WGETPATH . " --user=fiddle-dee-dee" @@ -98,4 +98,5 @@ my $cmdline = $WgetTest::WGETPATH . " --user=fiddle-dee-dee" my $code = system($cmdline); warn "Got code: $code\n" if $code; +kill ('TERM', $pid); exit $code;