aboutsummaryrefslogtreecommitdiff
path: root/tests/bench/funcall-1-inline.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bench/funcall-1-inline.py')
-rw-r--r--tests/bench/funcall-1-inline.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/bench/funcall-1-inline.py b/tests/bench/funcall-1-inline.py
deleted file mode 100644
index fbeb79630..000000000
--- a/tests/bench/funcall-1-inline.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# Function call overhead test
-# Establish a baseline for performing a trivial operation inline
-import bench
-
-def test(num):
- for i in iter(range(num)):
- a = i + 1
-
-bench.run(test)