aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-04-08 11:19:45 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-04-08 11:19:45 +0000
commitb7dbf9057993982020320b8015180928a0a8ebee (patch)
tree27703fd1fbae26f4b2c185f4bc874dfabe8cdc18
parent764487aa772a027fe78a72f8fa0088db98a89f01 (diff)
downloadgnunet-b7dbf9057993982020320b8015180928a0a8ebee.tar.gz
gnunet-b7dbf9057993982020320b8015180928a0a8ebee.zip
fix
-rwxr-xr-xsrc/integration-tests/test_integration_clique_nat.py.in31
1 files changed, 28 insertions, 3 deletions
diff --git a/src/integration-tests/test_integration_clique_nat.py.in b/src/integration-tests/test_integration_clique_nat.py.in
index a457e8d83..d890928e8 100755
--- a/src/integration-tests/test_integration_clique_nat.py.in
+++ b/src/integration-tests/test_integration_clique_nat.py.in
@@ -49,9 +49,34 @@ check_timeout = 180
49 49
50 50
51def cleanup (): 51def cleanup ():
52 shutil.rmtree (os.path.join (tmp, "c_bootstrap_server"), True) 52 retries = 10
53 shutil.rmtree (os.path.join (tmp, "c_no_nat_client"), True) 53 path = os.path.join (tmp, "c_bootstrap_server")
54 shutil.rmtree (os.path.join (tmp, "c_nat_client"), True) 54 test.p ("Removing " + path)
55 while ((os.path.exists(path)) and (retries > 0)):
56 shutil.rmtree ((path), False)
57 time.sleep (1)
58 retries -= 1
59 if (os.path.exists(path)):
60 test.p ("Failed to remove " + path)
61
62 retries = 10
63 path = os.path.join (tmp, "c_no_nat_client")
64 test.p ("Removing " + path)
65 while ((os.path.exists(path)) and (retries > 0)):
66 shutil.rmtree ((path), False)
67 time.sleep (1)
68 retries -= 1
69 if (os.path.exists(path)):
70 test.p ("Failed to remove " + path)
71 retries = 10
72 path = os.path.join (tmp, "c_nat_client")
73 test.p ("Removing " + path)
74 while ((os.path.exists(path)) and (retries > 0)):
75 shutil.rmtree ((path), False)
76 time.sleep (1)
77 retries -= 1
78 if (os.path.exists(path)):
79 test.p ("Failed to remove " + path)
55 80
56 81
57def success_cont (check): 82def success_cont (check):