Skip to content

Commit 7f80113

Browse files
committed
Revert part of "Remove unused FlattenedBI module": keep the test
This reverts part of the commit 4e95cff.
1 parent f8ea135 commit 7f80113

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

unittest/cdomains/intDomainTest.ml

+3-1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ end
110110

111111
module Ikind = struct let ikind () = Cil.ILong end
112112
module A = IntTest (IntDomain.Integers (IntOps.BigIntOps))
113+
module B = IntTest (IntDomain.Flat (IntDomain.Integers (IntOps.BigIntOps)))
113114
module C = IntTest (IntDomainProperties.WithIkind (IntDomain.DefExc) (Ikind))
114115
module T = struct
115116
include IntDomainProperties.WithIkind (IntDomain.DefExc) (Ikind)
@@ -282,7 +283,8 @@ end
282283

283284
let test () = "intDomainTest" >:::
284285
[ "int_Integers" >::: A.test ();
285-
"int_DefExc" >::: C.test ();
286+
"int_Flattened" >::: B.test ();
287+
"int_DefExc" >::: C.test ();
286288
"test_bot" >:: test_bot;
287289
"test_join" >:: test_join;
288290
"test_meet" >:: test_meet;

0 commit comments

Comments
 (0)