From a05835c46e0281d5e8fd1a0a307eaab344a47350 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 29 Jul 2018 19:24:01 -0700 Subject: [PATCH] tests: more stable roundtrip.py. --- tests/bench/roundtrip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bench/roundtrip.py b/tests/bench/roundtrip.py index 40582d46..13b9413d 100644 --- a/tests/bench/roundtrip.py +++ b/tests/bench/roundtrip.py @@ -12,6 +12,6 @@ def do_nothing(): def main(router): f = router.fork() t0 = time.time() - for x in xrange(1000): + for x in xrange(10000): f.call(do_nothing) print '++', int(1e6 * ((time.time() - t0) / (1.0+x))), 'usec'