Skip to content

Commit

Permalink
Revert part of "Remove unused FlattenedBI module": keep the test
Browse files Browse the repository at this point in the history
This reverts part of the commit 4e95cff.
  • Loading branch information
karoliineh committed Jan 22, 2024
1 parent f8ea135 commit 7f80113
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion unittest/cdomains/intDomainTest.ml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ end

module Ikind = struct let ikind () = Cil.ILong end
module A = IntTest (IntDomain.Integers (IntOps.BigIntOps))
module B = IntTest (IntDomain.Flat (IntDomain.Integers (IntOps.BigIntOps)))
module C = IntTest (IntDomainProperties.WithIkind (IntDomain.DefExc) (Ikind))
module T = struct
include IntDomainProperties.WithIkind (IntDomain.DefExc) (Ikind)
Expand Down Expand Up @@ -282,7 +283,8 @@ end

let test () = "intDomainTest" >:::
[ "int_Integers" >::: A.test ();
"int_DefExc" >::: C.test ();
"int_Flattened" >::: B.test ();
"int_DefExc" >::: C.test ();
"test_bot" >:: test_bot;
"test_join" >:: test_join;
"test_meet" >:: test_meet;
Expand Down

0 comments on commit 7f80113

Please sign in to comment.