summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bench/var-3-local.py
blob: 124b484295220e3cf8fbd83c4795a7183d55e8fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import bench


def test(num):
    ITERS = 20000000
    i = 0
    while i < ITERS:
        i += 1

bench.run(test)