summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2016-07-28 13:39:47 +0100
committerAndrew Lewis <nerf@judo.za.org>2016-07-28 13:39:47 +0100
commit550442648d3fdb3162172f647ff5493ee06f1930 (patch)
tree94ed4264445316e579c52f834df96429ac91df69 /test
parent244315dce16f26a2acec8e1cd1ed21bda860fa97 (diff)
downloadrspamd-550442648d3fdb3162172f647ff5493ee06f1930.tar.gz
rspamd-550442648d3fdb3162172f647ff5493ee06f1930.zip
[Test] Fix paths
Diffstat (limited to 'test')
-rw-r--r--test/functional/lib/rspamd.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/lib/rspamd.py b/test/functional/lib/rspamd.py
index 48716f6cf..3556a4b58 100644
--- a/test/functional/lib/rspamd.py
+++ b/test/functional/lib/rspamd.py
@@ -43,23 +43,23 @@ def get_top_dir():
if os.environ.get('RSPAMD_TOPDIR'):
return os.environ['RSPAMD_TOPDIR']
- return get_test_directory() + "../../"
+ return get_test_directory() + "/../../"
def get_rspamd():
if os.environ.get('RSPAMD'):
return os.environ['RSPAMD']
dname = get_top_dir()
- return dname + "src/rspamd"
+ return dname + "/src/rspamd"
def get_rspamc():
if os.environ.get('RSPAMC'):
return os.environ['RSPAMC']
dname = get_top_dir()
- return dname + "src/client/rspamc"
+ return dname + "/src/client/rspamc"
def get_rspamadm():
if os.environ.get('RSPAMADM'):
return environ['RSPAMADM']
dname = get_top_dir()
- return dname + "src/rspamadm/rspamadm"
+ return dname + "/src/rspamadm/rspamadm"
def make_temporary_directory():
return tempfile.mkdtemp()