Skip to content

Commit

Permalink
Fixes test
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeom committed Feb 18, 2024
1 parent 2e54af2 commit 141c751
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion test/unit/test_bitv8.ml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ let () =
let x = I8.sym "x" in
assert (Z3.check solver [ I8.(x > v 0) ]);
let v = Z3.get_value solver x in
assert (v.node.e = Val (Num (I8 1)))
assert (v >= I8.v 1)
2 changes: 0 additions & 2 deletions test/unit/test_normalization.ml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@ let () =
let y = Bitv.I32.sym "y" in
let e1 = Bitv.I32.(x > y) in
let e2 = Bitv.I32.(y < x) in
Format.printf "e1: %[email protected]: %a@." pp e1 pp e2;
(* Hash-consing not working?! *)
assert (e1 == e2)

0 comments on commit 141c751

Please sign in to comment.