aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-02-25 12:45:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-02-25 12:45:20 +0000
commitc9bc14a22200252884451a19fdaa2cb292b93645 (patch)
tree5d964d6dfdca29bacce4dcaf93c42e56d3edca6c /tests/runtests.pl
parent63708cbfb0b9e6026eb43b4c346ac82b98bc489f (diff)
use the pid file, use the automake subdir
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 4d18268d6..b88988ac7 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -140,14 +140,18 @@ sub runhttpserver {
my $RUNNING;
my $pid;
+ $pid = checkserver ($HTTPPIDFILE);
+
# verify if our/any server is running on this port
my $data=`$CURL --silent -i $HOSTIP:$HOSTPORT/verifiedserver`;
if ( $data =~ /WE ROOLZ(: |)(\d*)/ ) {
- $pid = 0+$2;
+ if($2) {
+ $pid = 0+$2;
+ }
if(!$pid) {
- print "Test server already running with unkown pid! Use it...\n";
+ print "Test server already running with unknown pid! Use it...\n";
return;
}