aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests/test_integration_clique_nat.py.in
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-25 07:17:55 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-25 07:17:55 +0000
commit31c11f6c1934bcef07e12055dc9d0484957bd5d5 (patch)
treecd08eae7afebfa8fd774ce61282a5c56800fed0b /src/integration-tests/test_integration_clique_nat.py.in
parentbb0b87bf4c34d550f5fa1679fd25279e3921a949 (diff)
downloadgnunet-31c11f6c1934bcef07e12055dc9d0484957bd5d5.tar.gz
gnunet-31c11f6c1934bcef07e12055dc9d0484957bd5d5.zip
-LRN: fix integration tests
Diffstat (limited to 'src/integration-tests/test_integration_clique_nat.py.in')
-rwxr-xr-xsrc/integration-tests/test_integration_clique_nat.py.in15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/integration-tests/test_integration_clique_nat.py.in b/src/integration-tests/test_integration_clique_nat.py.in
index 48dfa61cd..a457e8d83 100755
--- a/src/integration-tests/test_integration_clique_nat.py.in
+++ b/src/integration-tests/test_integration_clique_nat.py.in
@@ -37,6 +37,10 @@ from gnunet_testing import Check
37from gnunet_testing import Condition 37from gnunet_testing import Condition
38from gnunet_testing import * 38from gnunet_testing import *
39 39
40if os.name == "nt":
41 tmp = os.getenv ("TEMP")
42else:
43 tmp = "/tmp"
40 44
41#definitions 45#definitions
42testname = "test_integration_clique_nat" 46testname = "test_integration_clique_nat"
@@ -45,14 +49,9 @@ check_timeout = 180
45 49
46 50
47def cleanup (): 51def cleanup ():
48 if os.name == "nt": 52 shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), True)
49 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "c_bootstrap_server"), True) 53 shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), True)
50 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "c_no_nat_client"), True) 54 shutil.rmtree (os.path.join (tmp, "c_nat_client"), True)
51 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "c_nat_client"), True)
52 else:
53 shutil.rmtree ("/tmp/c_bootstrap_server/", True)
54 shutil.rmtree ("/tmp/c_no_nat_client/", True)
55 shutil.rmtree ("/tmp/c_nat_client/", True)
56 55
57 56
58def success_cont (check): 57def success_cont (check):