aboutsummaryrefslogtreecommitdiff
path: root/tests/bench/loop_count-3-while_up.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bench/loop_count-3-while_up.py')
-rw-r--r--tests/bench/loop_count-3-while_up.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/bench/loop_count-3-while_up.py b/tests/bench/loop_count-3-while_up.py
deleted file mode 100644
index 1ab8054a0..000000000
--- a/tests/bench/loop_count-3-while_up.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import bench
-
-def test(num):
- i = 0
- while i < num:
- i += 1
-
-bench.run(test)