diff options
author | Yang Tse <yangsita@gmail.com> | 2012-12-22 00:26:03 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-12-22 00:26:03 +0100 |
commit | dfe382c6ae9084093b3f31144a8574fc4cae6bbe (patch) | |
tree | d8ae1af229665a60698a5d2f46f739d951be1f52 /tests | |
parent | b3d91a147f2efc274c921fa21dac6f419283abca (diff) |
runtests.pl: prepend $srcdir to HTTPTLS server config files path
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 0b2559ecd..210fb73e2 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1364,8 +1364,8 @@ sub runhttptlsserver { $flags .= "--http "; $flags .= "--debug 1 " if($debugprotocol); $flags .= "--port $port "; - $flags .= "--srppasswd certs/srp-verifier-db "; - $flags .= "--srppasswdconf certs/srp-verifier-conf"; + $flags .= "--srppasswd $srcdir/certs/srp-verifier-db "; + $flags .= "--srppasswdconf $srcdir/certs/srp-verifier-conf"; my $cmd = "$httptlssrv $flags > $logfile 2>&1"; my ($httptlspid, $pid2) = startnew($cmd, $pidfile, 10, 1); # fake pidfile |