-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
128 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
(rule | ||
(targets benchmark_types.ml benchmark_pb.ml benchmark_pp.ml | ||
benchmark_types.mli benchmark_pb.mli benchmark_pp.mli) | ||
(targets benchmark.ml benchmark.mli) | ||
(deps benchmark.proto) | ||
(action | ||
(run ocaml-protoc -binary -pp -ml_out ./ %{deps}))) | ||
(run ocaml-protoc --binary --pp --ml_out ./ %{deps}))) | ||
|
||
(executable | ||
(name benchmark_single_ml) | ||
(modules benchmark_single_ml ocaml_test_types ocaml_test_runner | ||
benchmark_types benchmark_pb benchmark_pp) | ||
benchmark) | ||
(libraries pbrt unix)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
(** Test type implementation *) | ||
|
||
val get_test : Benchmark_types.test_id -> (module Ocaml_test_runner.T_sig) | ||
val get_test : Benchmark.test_id -> (module Ocaml_test_runner.T_sig) | ||
(** [get_test test_id] returns the module for the given [test_id] which | ||
can then be plugged into the Ocaml_test_runner.Make functor | ||
*) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module T = Unittest_types | ||
module T = Unittest | ||
|
||
let () = | ||
assert ( | ||
|
Oops, something went wrong.