We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ea135 commit 7f80113Copy full SHA for 7f80113
unittest/cdomains/intDomainTest.ml
@@ -110,6 +110,7 @@ end
110
111
module Ikind = struct let ikind () = Cil.ILong end
112
module A = IntTest (IntDomain.Integers (IntOps.BigIntOps))
113
+module B = IntTest (IntDomain.Flat (IntDomain.Integers (IntOps.BigIntOps)))
114
module C = IntTest (IntDomainProperties.WithIkind (IntDomain.DefExc) (Ikind))
115
module T = struct
116
include IntDomainProperties.WithIkind (IntDomain.DefExc) (Ikind)
@@ -282,7 +283,8 @@ end
282
283
284
let test () = "intDomainTest" >:::
285
[ "int_Integers" >::: A.test ();
- "int_DefExc" >::: C.test ();
286
+ "int_Flattened" >::: B.test ();
287
+ "int_DefExc" >::: C.test ();
288
"test_bot" >:: test_bot;
289
"test_join" >:: test_join;
290
"test_meet" >:: test_meet;
0 commit comments