diff options
Diffstat (limited to 'bench/ffi/noop.js')
-rw-r--r-- | bench/ffi/noop.js | 15 |
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 }); |