aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
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/statistics
parenta67f39e2f07320d19f3f03d6ca22ae5ee53ea230 (diff)
downloadgnunet-16d21a3a2f100e33c2aaeea12a8e4ce41d252507.tar.gz
gnunet-16d21a3a2f100e33c2aaeea12a8e4ce41d252507.zip
Fix invocation of just-built tools
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/test_gnunet_statistics.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statistics/test_gnunet_statistics.py.in b/src/statistics/test_gnunet_statistics.py.in
index 0d3c984eb..b2da410a2 100644
--- a/src/statistics/test_gnunet_statistics.py.in
+++ b/src/statistics/test_gnunet_statistics.py.in
@@ -13,10 +13,10 @@ else:
13 tmp = "/tmp" 13 tmp = "/tmp"
14 14
15if os.name == 'nt': 15if os.name == 'nt':
16 st = 'gnunet-statistics.exe' 16 st = './gnunet-statistics.exe'
17 arm = 'gnunet-arm.exe' 17 arm = 'gnunet-arm.exe'
18else: 18else:
19 st = 'gnunet-statistics' 19 st = './gnunet-statistics'
20 arm = 'gnunet-arm' 20 arm = 'gnunet-arm'
21 21
22run_st = [st, '-c', 'test_statistics_api_data.conf'] 22run_st = [st, '-c', 'test_statistics_api_data.conf']