aboutsummaryrefslogtreecommitdiff
path: root/bench/ffi/noop.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/ffi/noop.js')
-rw-r--r--bench/ffi/noop.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/bench/ffi/noop.js b/bench/ffi/noop.js
deleted file mode 100644
index 13c8aef28..000000000
--- a/bench/ffi/noop.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import { dlopen } from "bun:ffi";
-import { bench, run } from "mitata";
-
-const {
- symbols: { noop },
-} = dlopen("./noop.dylib", {
- noop: {
- args: [],
- returns: "void",
- },
-});
-bench("noop", () => {
- noop();
-});
-run({ collect: false, percentiles: true });