diff options
Diffstat (limited to 'tests/internal_bench/loop_count-3-while_up.py')
-rw-r--r-- | tests/internal_bench/loop_count-3-while_up.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/internal_bench/loop_count-3-while_up.py b/tests/internal_bench/loop_count-3-while_up.py index 1ab8054a0..22c64403b 100644 --- a/tests/internal_bench/loop_count-3-while_up.py +++ b/tests/internal_bench/loop_count-3-while_up.py @@ -1,8 +1,10 @@ import bench + def test(num): i = 0 while i < num: i += 1 + bench.run(test) |