tests: Rename "bench" tests to "internal_bench" and run-internalbench.py

To emphasise these benchmark tests compare the internal performance of
features amongst themselves, rather than absolute performance testing.
This commit is contained in:
Damien George
2019-06-18 23:44:16 +10:00
parent d165a401dc
commit d86fb670e6
45 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import bench
def test(num):
i = 0
while i < num:
i += 1
bench.run(test)