aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_gnunet_fs_psd.py.in
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-08-16 04:08:03 +0000
committerLRN <lrn1986@gmail.com>2013-08-16 04:08:03 +0000
commit16d21a3a2f100e33c2aaeea12a8e4ce41d252507 (patch)
treeaa8e53d1d398d27ee72ac6489e0d080ff5b48057 /src/fs/test_gnunet_fs_psd.py.in
parenta67f39e2f07320d19f3f03d6ca22ae5ee53ea230 (diff)
downloadgnunet-16d21a3a2f100e33c2aaeea12a8e4ce41d252507.tar.gz
gnunet-16d21a3a2f100e33c2aaeea12a8e4ce41d252507.zip
Fix invocation of just-built tools
Diffstat (limited to 'src/fs/test_gnunet_fs_psd.py.in')
-rwxr-xr-xsrc/fs/test_gnunet_fs_psd.py.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fs/test_gnunet_fs_psd.py.in b/src/fs/test_gnunet_fs_psd.py.in
index 85ad30e61..ab23da42a 100755
--- a/src/fs/test_gnunet_fs_psd.py.in
+++ b/src/fs/test_gnunet_fs_psd.py.in
@@ -32,17 +32,17 @@ if gnunet_pyexpect_dir not in sys.path:
32from gnunet_pyexpect import pexpect 32from gnunet_pyexpect import pexpect
33 33
34if os.name == 'posix': 34if os.name == 'posix':
35 download = 'gnunet-download' 35 download = './gnunet-download'
36 gnunetarm = 'gnunet-arm' 36 gnunetarm = 'gnunet-arm'
37 publish = 'gnunet-publish' 37 publish = './gnunet-publish'
38 unindex = 'gnunet-unindex' 38 unindex = './gnunet-unindex'
39 search = 'gnunet-search' 39 search = './gnunet-search'
40elif os.name == 'nt': 40elif os.name == 'nt':
41 download = 'gnunet-download.exe' 41 download = './gnunet-download.exe'
42 gnunetarm = 'gnunet-arm.exe' 42 gnunetarm = 'gnunet-arm.exe'
43 publish = 'gnunet-publish.exe' 43 publish = './gnunet-publish.exe'
44 unindex = 'gnunet-unindex.exe' 44 unindex = './gnunet-unindex.exe'
45 search = 'gnunet-search.exe' 45 search = './gnunet-search.exe'
46 46
47if os.name == "nt": 47if os.name == "nt":
48 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-psd"), True) 48 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-psd"), True)