aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_gnunet_fs_rec.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_rec.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_rec.py.in')
-rwxr-xr-xsrc/fs/test_gnunet_fs_rec.py.in20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/fs/test_gnunet_fs_rec.py.in b/src/fs/test_gnunet_fs_rec.py.in
index 4f955b47c..dcfe6ae30 100755
--- a/src/fs/test_gnunet_fs_rec.py.in
+++ b/src/fs/test_gnunet_fs_rec.py.in
@@ -35,19 +35,19 @@ from gnunet_pyexpect import pexpect
35from pydiffer import dcdiff 35from pydiffer import dcdiff
36 36
37if os.name == 'posix': 37if os.name == 'posix':
38 download = 'gnunet-download' 38 download = './gnunet-download'
39 gnunetarm = 'gnunet-arm' 39 gnunetarm = 'gnunet-arm'
40 publish = 'gnunet-publish' 40 publish = './gnunet-publish'
41 unindex = 'gnunet-unindex' 41 unindex = './gnunet-unindex'
42 search = 'gnunet-search' 42 search = './gnunet-search'
43 directory = 'gnunet-directory' 43 directory = './gnunet-directory'
44elif os.name == 'nt': 44elif os.name == 'nt':
45 download = 'gnunet-download.exe' 45 download = './gnunet-download.exe'
46 gnunetarm = 'gnunet-arm.exe' 46 gnunetarm = 'gnunet-arm.exe'
47 publish = 'gnunet-publish.exe' 47 publish = './gnunet-publish.exe'
48 unindex = 'gnunet-unindex.exe' 48 unindex = './gnunet-unindex.exe'
49 search = 'gnunet-search.exe' 49 search = './gnunet-search.exe'
50 directory = 'gnunet-directory.exe' 50 directory = './gnunet-directory.exe'
51 51
52if os.name == "nt": 52if os.name == "nt":
53 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-rec"), True) 53 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-rec"), True)