aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-09-03 14:38:17 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-09-03 14:38:17 +0000
commitff19a78493a9df211f1ac6c7c1fb6b986b694bf2 (patch)
treee001b6e74e2f8b88af1d9789573bbbd648ac3960
parent4131b927fffb82e9196f39c774506a63b538324f (diff)
downloadgnunet-ff19a78493a9df211f1ac6c7c1fb6b986b694bf2.tar.gz
gnunet-ff19a78493a9df211f1ac6c7c1fb6b986b694bf2.zip
- fixes
-rw-r--r--src/testbed/Makefile.am4
-rwxr-xr-xsrc/testbed/test_testbed_api_barriers.py5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/testbed/Makefile.am b/src/testbed/Makefile.am
index 4c204c4a8..18d6a3ae9 100644
--- a/src/testbed/Makefile.am
+++ b/src/testbed/Makefile.am
@@ -30,10 +30,10 @@ bin_PROGRAMS = \
30 $(ll_binaries) \ 30 $(ll_binaries) \
31 gnunet-testbed-profiler 31 gnunet-testbed-profiler
32 32
33noinst_SCRIPTS = \ 33check_SCRIPTS = \
34 buildvars.py 34 buildvars.py
35 35
36CLEANFILES = $(noinst_SCRIPTS) \ 36CLEANFILES = $(check_SCRIPTS) \
37 buildvars.pyc 37 buildvars.pyc
38 38
39noinst_PROGRAMS = \ 39noinst_PROGRAMS = \
diff --git a/src/testbed/test_testbed_api_barriers.py b/src/testbed/test_testbed_api_barriers.py
index 97993a9dc..9ee8c61ff 100755
--- a/src/testbed/test_testbed_api_barriers.py
+++ b/src/testbed/test_testbed_api_barriers.py
@@ -23,9 +23,10 @@
23# author: Sree Harsha Totakura 23# author: Sree Harsha Totakura
24 24
25 25
26import subprocess as sp 26import subprocess
27import shutil 27import shutil
28import os 28import os
29import sys
29from buildvars import libexecdir 30from buildvars import libexecdir
30 31
31 32
@@ -35,7 +36,7 @@ service = 'gnunet-service-test-barriers'
35shutil.copy (service, libexecdir) 36shutil.copy (service, libexecdir)
36 37
37# start the testcase binary 38# start the testcase binary
38ret = subprocess.call ('test_testbed_api_barriers', shell=False) 39ret = subprocess.call ('./test_testbed_api_barriers', shell=False)
39 40
40# remove the installed gnunet-service-test-barriers copy 41# remove the installed gnunet-service-test-barriers copy
41os.unlink (os.path.join (libexecdir, service)) 42os.unlink (os.path.join (libexecdir, service))