summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2008-02-26 19:13:55 +0000
committerStefan Bühler <stbuehler@web.de>2008-02-26 19:13:55 +0000
commit0562bc59c76fe2af1c9b8318b89b1d8a483fa99f (patch)
tree9eb6d1272ac735704494d14164898433d375b925
parentf995a0936bb3e2f98b2f06d4dc4684c4892cfacf (diff)
downloadlighttpd-git-0562bc59c76fe2af1c9b8318b89b1d8a483fa99f.tar.gz
Fix mod-proxy.t to run outside of the srcdir
git-svn-id: svn+ssh://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2094 152afb58-edef-0310-8abb-c4023f1b3aa9
-rwxr-xr-xtests/mod-proxy.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mod-proxy.t b/tests/mod-proxy.t
index 9a13ba62..b43c4657 100755
--- a/tests/mod-proxy.t
+++ b/tests/mod-proxy.t
@@ -22,11 +22,11 @@ my $t;
$tf_real->{PORT} = 2048;
$tf_real->{CONFIGFILE} = 'lighttpd.conf';
-$tf_real->{LIGHTTPD_PIDFILE} = $tf_real->{SRCDIR}.'/tmp/lighttpd/lighttpd.pid';
+$tf_real->{LIGHTTPD_PIDFILE} = $tf_real->{TESTDIR}.'/tmp/lighttpd/lighttpd.pid';
$tf_proxy->{PORT} = 2050;
$tf_proxy->{CONFIGFILE} = 'proxy.conf';
-$tf_proxy->{LIGHTTPD_PIDFILE} = $tf_proxy->{SRCDIR}.'/tmp/lighttpd/lighttpd-proxy.pid';
+$tf_proxy->{LIGHTTPD_PIDFILE} = $tf_proxy->{TESTDIR}.'/tmp/lighttpd/lighttpd-proxy.pid';
ok($tf_real->start_proc == 0, "Starting lighttpd") or die();