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,7 @@
import bench
def test(num):
for i in iter(range(num // 1000)):
b"\0" * 10000
bench.run(test)