From 9f81c1a85bb5485bdd2b4dd5a95fc02d2f6deeb4 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Fri, 7 Sep 2012 12:21:12 +0000 Subject: [PATCH] - changes --- src/integration-tests/test_mem_consumption.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/integration-tests/test_mem_consumption.py b/src/integration-tests/test_mem_consumption.py index d70da5493..f4c315955 100755 --- a/src/integration-tests/test_mem_consumption.py +++ b/src/integration-tests/test_mem_consumption.py @@ -105,7 +105,7 @@ def run (): global client global client2 restarts = 0 - iterations = 4 + iterations = 10000 success = False test = Test ('test_memory_consumption', verbose) @@ -115,7 +115,8 @@ def run (): client.start(); while (restarts < iterations): - print 'Iteration #' + str (restarts) + ' of ' + str (restarts) + print 'Iteration #' + str (restarts) + ' of ' + str (iterations) + print '---------------------' restarts += 1 client2 = Peer(test, './confs/c_no_nat_client_2.conf'); client2.start(); @@ -125,7 +126,7 @@ def run (): test.p ('All peers connected, stopping client2') client2.stop () check_disconnect () - test.p ('Peer disconnected') + test.p ('Peer disconnected\n') print str (iterations) + " Iteration executed" server.stop () -- 2.25.1