aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-04-08 10:00:57 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-04-08 10:00:57 +0000
commite6692977928f65bb8d5966317ae925361d61ee4d (patch)
treeefe5c915ac620163309ba831e4dd7769ba3ef353 /src
parentc39ead5d532225f7adbb583f3603f87613adf464 (diff)
downloadgnunet-e6692977928f65bb8d5966317ae925361d61ee4d.tar.gz
gnunet-e6692977928f65bb8d5966317ae925361d61ee4d.zip
fix
Diffstat (limited to 'src')
-rwxr-xr-xsrc/integration-tests/test_integration_restart.py.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/integration-tests/test_integration_restart.py.in b/src/integration-tests/test_integration_restart.py.in
index 70d10be24..a14f5ac03 100755
--- a/src/integration-tests/test_integration_restart.py.in
+++ b/src/integration-tests/test_integration_restart.py.in
@@ -61,17 +61,17 @@ def cleanup ():
61 retries -= 1 61 retries -= 1
62 if (os.path.exists(path)): 62 if (os.path.exists(path)):
63 test.p ("Failed to remove " + path) 63 test.p ("Failed to remove " + path)
64 64
65 65
66 retries = 10 66 retries = 10
67 path = os.path.join (tmp, "c_no_nat_client") 67 path = os.path.join (tmp, "c_no_nat_client")
68 test.p ("Removing " + path) 68 test.p ("Removing " + path)
69 while ((os.path.exists(path)) and (retries > 0)): 69 while ((os.path.exists(path)) and (retries > 0)):
70 shutil.rmtree ((path), False) 70 shutil.rmtree ((path), False)
71 time.sleep (1) 71 time.sleep (1)
72 retries -= 1 72 retries -= 1
73 if (os.path.exists(path)): 73 if (os.path.exists(path)):
74 test.p ("Failed to remove " + path) 74 test.p ("Failed to remove " + path)
75 75
76def success_restart_cont (check): 76def success_restart_cont (check):
77 global success 77 global success