gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r28673 - in gnunet/src: arm dht fs peerinfo-tool statistics


From: gnunet
Subject: [GNUnet-SVN] r28673 - in gnunet/src: arm dht fs peerinfo-tool statistics
Date: Fri, 16 Aug 2013 06:08:04 +0200

Author: LRN
Date: 2013-08-16 06:08:03 +0200 (Fri, 16 Aug 2013)
New Revision: 28673

Modified:
   gnunet/src/arm/test_gnunet_arm.py.in
   gnunet/src/dht/test_dht_tools.py.in
   gnunet/src/fs/test_gnunet_fs_idx.py.in
   gnunet/src/fs/test_gnunet_fs_ns.py.in
   gnunet/src/fs/test_gnunet_fs_psd.py.in
   gnunet/src/fs/test_gnunet_fs_rec.py.in
   gnunet/src/peerinfo-tool/test_gnunet_peerinfo.py.in
   gnunet/src/statistics/test_gnunet_statistics.py.in
Log:
Fix invocation of just-built tools

Modified: gnunet/src/arm/test_gnunet_arm.py.in
===================================================================
--- gnunet/src/arm/test_gnunet_arm.py.in        2013-08-15 20:53:55 UTC (rev 
28672)
+++ gnunet/src/arm/test_gnunet_arm.py.in        2013-08-16 04:08:03 UTC (rev 
28673)
@@ -14,10 +14,10 @@
 
 if os.name == 'nt':
   st = 'gnunet-statistics.exe'
-  arm = 'gnunet-arm.exe'
+  arm = './gnunet-arm.exe'
 else:
   st = 'gnunet-statistics'
-  arm = 'gnunet-arm'
+  arm = './gnunet-arm'
 
 run_arm = [arm, '-c', 'test_arm_api_data.conf', '--no-stdout', '--no-stderr']
 debug = os.getenv ('DEBUG')

Modified: gnunet/src/dht/test_dht_tools.py.in
===================================================================
--- gnunet/src/dht/test_dht_tools.py.in 2013-08-15 20:53:55 UTC (rev 28672)
+++ gnunet/src/dht/test_dht_tools.py.in 2013-08-16 04:08:03 UTC (rev 28673)
@@ -15,8 +15,8 @@
 
 if os.name == 'nt':
   pif = 'gnunet-peerinfo.exe'
-  get = 'gnunet-dht-get.exe'
-  put = 'gnunet-dht-put.exe'
+  get = './gnunet-dht-get.exe'
+  put = './gnunet-dht-put.exe'
   arm = 'gnunet-arm.exe'
 else:
   pif = 'gnunet-peerinfo'

Modified: gnunet/src/fs/test_gnunet_fs_idx.py.in
===================================================================
--- gnunet/src/fs/test_gnunet_fs_idx.py.in      2013-08-15 20:53:55 UTC (rev 
28672)
+++ gnunet/src/fs/test_gnunet_fs_idx.py.in      2013-08-16 04:08:03 UTC (rev 
28673)
@@ -32,15 +32,15 @@
 from gnunet_pyexpect import pexpect
 
 if os.name == 'posix':
-  download = 'gnunet-download'
+  download = './gnunet-download'
   gnunetarm = 'gnunet-arm'
-  publish = 'gnunet-publish'
-  unindex = 'gnunet-unindex'
+  publish = './gnunet-publish'
+  unindex = './gnunet-unindex'
 elif os.name == 'nt':
-  download = 'gnunet-download.exe'
+  download = './gnunet-download.exe'
   gnunetarm = 'gnunet-arm.exe'
-  publish = 'gnunet-publish.exe'
-  unindex = 'gnunet-unindex.exe'
+  publish = './gnunet-publish.exe'
+  unindex = './gnunet-unindex.exe'
 
 if os.name == "nt":
   shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-idx"), 
True)

Modified: gnunet/src/fs/test_gnunet_fs_ns.py.in
===================================================================
--- gnunet/src/fs/test_gnunet_fs_ns.py.in       2013-08-15 20:53:55 UTC (rev 
28672)
+++ gnunet/src/fs/test_gnunet_fs_ns.py.in       2013-08-16 04:08:03 UTC (rev 
28673)
@@ -32,19 +32,19 @@
 from gnunet_pyexpect import pexpect
 
 if os.name == 'posix':
-  pseudonym = 'gnunet-pseudonym'
+  pseudonym = './gnunet-pseudonym'
   gnunetarm = 'gnunet-arm'
-  publish = 'gnunet-publish'
-  unindex = 'gnunet-unindex'
-  search = 'gnunet-search'
-  identity = 'gnunet-identity'
+  publish = './gnunet-publish'
+  unindex = './gnunet-unindex'
+  search = './gnunet-search'
+  identity = './gnunet-identity'
 elif os.name == 'nt':
-  pseudonym = 'gnunet-pseudonym.exe'
+  pseudonym = './gnunet-pseudonym.exe'
   gnunetarm = 'gnunet-arm.exe'
-  publish = 'gnunet-publish.exe'
-  unindex = 'gnunet-unindex.exe'
-  search = 'gnunet-search.exe'
-  identity = 'gnunet-identity.exe'
+  publish = './gnunet-publish.exe'
+  unindex = './gnunet-unindex.exe'
+  search = './gnunet-search.exe'
+  identity = './gnunet-identity.exe'
 
 if os.name == "nt":
   shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-ns"), 
True)

Modified: gnunet/src/fs/test_gnunet_fs_psd.py.in
===================================================================
--- gnunet/src/fs/test_gnunet_fs_psd.py.in      2013-08-15 20:53:55 UTC (rev 
28672)
+++ gnunet/src/fs/test_gnunet_fs_psd.py.in      2013-08-16 04:08:03 UTC (rev 
28673)
@@ -32,17 +32,17 @@
 from gnunet_pyexpect import pexpect
 
 if os.name == 'posix':
-  download = 'gnunet-download'
+  download = './gnunet-download'
   gnunetarm = 'gnunet-arm'
-  publish = 'gnunet-publish'
-  unindex = 'gnunet-unindex'
-  search = 'gnunet-search'
+  publish = './gnunet-publish'
+  unindex = './gnunet-unindex'
+  search = './gnunet-search'
 elif os.name == 'nt':
-  download = 'gnunet-download.exe'
+  download = './gnunet-download.exe'
   gnunetarm = 'gnunet-arm.exe'
-  publish = 'gnunet-publish.exe'
-  unindex = 'gnunet-unindex.exe'
-  search = 'gnunet-search.exe'
+  publish = './gnunet-publish.exe'
+  unindex = './gnunet-unindex.exe'
+  search = './gnunet-search.exe'
 
 if os.name == "nt":
   shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-psd"), 
True)

Modified: gnunet/src/fs/test_gnunet_fs_rec.py.in
===================================================================
--- gnunet/src/fs/test_gnunet_fs_rec.py.in      2013-08-15 20:53:55 UTC (rev 
28672)
+++ gnunet/src/fs/test_gnunet_fs_rec.py.in      2013-08-16 04:08:03 UTC (rev 
28673)
@@ -35,19 +35,19 @@
 from pydiffer import dcdiff
 
 if os.name == 'posix':
-  download = 'gnunet-download'
+  download = './gnunet-download'
   gnunetarm = 'gnunet-arm'
-  publish = 'gnunet-publish'
-  unindex = 'gnunet-unindex'
-  search = 'gnunet-search'
-  directory = 'gnunet-directory'
+  publish = './gnunet-publish'
+  unindex = './gnunet-unindex'
+  search = './gnunet-search'
+  directory = './gnunet-directory'
 elif os.name == 'nt':
-  download = 'gnunet-download.exe'
+  download = './gnunet-download.exe'
   gnunetarm = 'gnunet-arm.exe'
-  publish = 'gnunet-publish.exe'
-  unindex = 'gnunet-unindex.exe'
-  search = 'gnunet-search.exe'
-  directory = 'gnunet-directory.exe'
+  publish = './gnunet-publish.exe'
+  unindex = './gnunet-unindex.exe'
+  search = './gnunet-search.exe'
+  directory = './gnunet-directory.exe'
 
 if os.name == "nt":
   shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-rec"), 
True)

Modified: gnunet/src/peerinfo-tool/test_gnunet_peerinfo.py.in
===================================================================
--- gnunet/src/peerinfo-tool/test_gnunet_peerinfo.py.in 2013-08-15 20:53:55 UTC 
(rev 28672)
+++ gnunet/src/peerinfo-tool/test_gnunet_peerinfo.py.in 2013-08-16 04:08:03 UTC 
(rev 28673)
@@ -33,11 +33,11 @@
 from gnunet_pyexpect import pexpect
 
 if os.name == 'posix':
-  peerinfo = 'gnunet-peerinfo'
+  peerinfo = './gnunet-peerinfo'
   gnunetarm = 'gnunet-arm'
   gnunettesting = 'gnunet-testing'
 elif os.name == 'nt':
-  peerinfo = 'gnunet-peerinfo.exe'
+  peerinfo = './gnunet-peerinfo.exe'
   gnunetarm = 'gnunet-arm.exe'
   gnunettesting = 'gnunet-testing.exe'
 

Modified: gnunet/src/statistics/test_gnunet_statistics.py.in
===================================================================
--- gnunet/src/statistics/test_gnunet_statistics.py.in  2013-08-15 20:53:55 UTC 
(rev 28672)
+++ gnunet/src/statistics/test_gnunet_statistics.py.in  2013-08-16 04:08:03 UTC 
(rev 28673)
@@ -13,10 +13,10 @@
   tmp = "/tmp"
 
 if os.name == 'nt':
-  st = 'gnunet-statistics.exe'
+  st = './gnunet-statistics.exe'
   arm = 'gnunet-arm.exe'
 else:
-  st = 'gnunet-statistics'
+  st = './gnunet-statistics'
   arm = 'gnunet-arm'
 
 run_st = [st, '-c', 'test_statistics_api_data.conf']




reply via email to

[Prev in Thread] Current Thread [Next in Thread]