Skip to content

Commit

Permalink
Promote tests
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeom committed Dec 6, 2024
1 parent 3d4454e commit 2acf83a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion doc/index.mld
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module Z3 :
val solver_time : float ref
val solver_count : int ref
val pp_statistics : t Smtml_prelude.Fmt.t
val create : ?params:Smtml.Params.t -> ?logic:Smtml.Ty.logic -> unit -> t
val create : ?params:Smtml.Params.t -> ?logic:Smtml.Logic.t -> unit -> t
val interrupt : t -> unit
val clone : t -> t
val push : t -> unit
Expand Down
3 changes: 1 addition & 2 deletions test/solver/dune
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
(name test_colibri2)
(modules test_colibri2)
(libraries smtml_tests)
(build_if
(and %{lib-available:colibri2} %{lib-available:colibrilib})))
(build_if %{lib-available:colibri2.core}))

(test
(name test_bitwuzla)
Expand Down
8 changes: 4 additions & 4 deletions test/solver/test_bitwuzla.expected
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(model
(w (i32 4))
(x (i32 1))
(y (i32 2))
(z (i32 3)))
(w i32 4)
(x i32 1)
(y i32 2)
(z i32 3))
8 changes: 4 additions & 4 deletions test/solver/test_colibri2.expected
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(model
(w (i32 4))
(x (i32 1))
(y (i32 2))
(z (i32 3)))
(w i32 4)
(x i32 1)
(y i32 2)
(z i32 3))
8 changes: 4 additions & 4 deletions test/solver/test_cvc5.expected
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(model
(w (i32 4))
(x (i32 1))
(y (i32 2))
(z (i32 3)))
(w i32 4)
(x i32 1)
(y i32 2)
(z i32 3))

0 comments on commit 2acf83a

Please sign in to comment.