diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-17 20:48:43 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-22 12:22:26 +0100 |
commit | 8e012f4804ecf1665819e761283120a3c0e73643 (patch) | |
tree | c168efe3e1f0edf5e45695c643e62b3e5447be37 /lib/containers | |
parent | bf2af26d896bb499f2c312a4f1ecd3210e2d7780 (diff) |
Switched from OUnit to alcotest
Diffstat (limited to 'lib/containers')
-rwxr-xr-x | lib/containers/dune | 4 | ||||
-rw-r--r-- | lib/containers/importContainers.ml | 22 |
2 files changed, 14 insertions, 12 deletions
diff --git a/lib/containers/dune b/lib/containers/dune index 46d0e24..70bbf0b 100755 --- a/lib/containers/dune +++ b/lib/containers/dune @@ -4,4 +4,8 @@ importDataTypes
importConf
)
+ (preprocess (pps
+ ppx_deriving.ord
+ ppx_deriving.show
+ ppx_deriving.eq ))
)
diff --git a/lib/containers/importContainers.ml b/lib/containers/importContainers.ml index bf65ba4..6da8374 100644 --- a/lib/containers/importContainers.ml +++ b/lib/containers/importContainers.ml @@ -2,8 +2,7 @@ module Conf = ImportConf module Syntax = Conf.Syntax module Table = ImportDataTypes.Table -(** This key is used to create the table of each externals in the - configuration. +(** This key is used to create the table of each externals in the configuration. This table allow to check if there are cycles between the references *) module KeyName : sig @@ -49,13 +48,12 @@ end = struct end module Externals = MoreLabels.Map.Make (KeyName) -module IntSet = MoreLabels.Set.Make (Int) - -let show_intSet set = - let b = Buffer.create 16 in - IntSet.iter - ~f:(fun v -> - Buffer.add_string b (string_of_int v); - Buffer.add_char b ',') - set; - Buffer.contents b + +module IntSet = struct + include MoreLabels.Set.Make (Int) + + let pp : Format.formatter -> t -> unit = + fun format set -> + let iter' f = iter ~f in + Format.pp_print_iter iter' Format.pp_print_int format set +end |