- fixes
authorSree Harsha Totakura <totakura@in.tum.de>
Tue, 3 Sep 2013 14:38:17 +0000 (14:38 +0000)
committerSree Harsha Totakura <totakura@in.tum.de>
Tue, 3 Sep 2013 14:38:17 +0000 (14:38 +0000)
src/testbed/Makefile.am
src/testbed/test_testbed_api_barriers.py

index 4c204c4a8536c8c70e36854cea3e7418369e27ac..18d6a3ae970b0b0e751f3e425f4bc866c7a8961e 100644 (file)
@@ -30,10 +30,10 @@ bin_PROGRAMS = \
   $(ll_binaries) \
   gnunet-testbed-profiler
 
-noinst_SCRIPTS = \
+check_SCRIPTS = \
   buildvars.py
 
-CLEANFILES = $(noinst_SCRIPTS) \
+CLEANFILES = $(check_SCRIPTS) \
   buildvars.pyc
 
 noinst_PROGRAMS = \
index 97993a9dce373eeb88a0c5476e4faa9b0bf00c89..9ee8c61ff261f5f23ce6175911ec53a851c53ad4 100755 (executable)
 # author:   Sree Harsha Totakura
 
 
-import subprocess as sp
+import subprocess
 import shutil
 import os
+import sys
 from buildvars import libexecdir
 
 
@@ -35,7 +36,7 @@ service = 'gnunet-service-test-barriers'
 shutil.copy (service, libexecdir)
 
 # start the testcase binary
-ret = subprocess.call ('test_testbed_api_barriers', shell=False)
+ret = subprocess.call ('./test_testbed_api_barriers', shell=False)
 
 # remove the installed gnunet-service-test-barriers copy
 os.unlink (os.path.join (libexecdir, service))