summaryrefslogtreecommitdiff
path: root/ocaml/test/test_bench_one.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ocaml/test/test_bench_one.ml')
-rw-r--r--ocaml/test/test_bench_one.ml15
1 files changed, 0 insertions, 15 deletions
diff --git a/ocaml/test/test_bench_one.ml b/ocaml/test/test_bench_one.ml
deleted file mode 100644
index 1a73be5..0000000
--- a/ocaml/test/test_bench_one.ml
+++ /dev/null
@@ -1,15 +0,0 @@
-open Nock_lib.Noun
-open Nock_lib.Serial
-
-let () =
- Printf.printf "Running single bench iteration...\n";
- for i = 1 to 10 do
- Printf.printf "Iter %d: " i;
- flush stdout;
- let n = atom 42 in
- let j = jam n in
- let c = cue j in
- Format.printf "%a\n" pp_noun c;
- flush stdout
- done;
- Printf.printf "Done!\n"