Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gobview
1 change: 1 addition & 0 deletions src/apronPrecCompare.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
(* Utility program to compare precision of results of the apron analysis with different privatizations and/or differents apron domains *)
(* The result files that can be compared here may be created by passing an output file name in "exp.apron.prec-dump" to Goblint *)
module B = PrecCompare.MakeDump (ApronPrecCompareUtil)
Expand Down
1 change: 0 additions & 1 deletion src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
(library
(name goblint_lib)
(public_name goblint.lib)
(wrapped false)
(modules :standard \ goblint mainspec privPrecCompare apronPrecCompare messagesCompare)
(libraries goblint.sites goblint-cil.all-features batteries.unthreaded qcheck-core.runner sha json-data-encoding jsonrpc cpu arg-complete fpath yaml yaml.unix uuidm
; Conditionally compile based on whether apron optional dependency is installed or not.
Expand Down
1 change: 1 addition & 0 deletions src/goblint.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open GobConfig
open Goblintutil
open Maingoblint
Expand Down
1 change: 1 addition & 0 deletions src/mainspec.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open Prelude (* otherwise open_in would return wrong type for SpecUtil *)
open SpecUtil

Expand Down
1 change: 1 addition & 0 deletions src/messagesCompare.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
module MS = Set.Make (Messages.Message)

let colors = ref true
Expand Down
1 change: 1 addition & 0 deletions src/privPrecCompare.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
(* Utility program to compare precision of results of the base analysis with different privatizations *)
(* The result files that can be compared here may be created by passing an output file name in "exp.priv-prec-dump" to Goblint *)
module A = PrecCompare.MakeDump (PrivPrecCompareUtil)
Expand Down
1 change: 1 addition & 0 deletions unittest/analyses/libraryDslTest.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open OUnit2
open GoblintCil

Expand Down
697 changes: 349 additions & 348 deletions unittest/cdomains/floatDomainTest.ml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions unittest/cdomains/intDomainTest.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open OUnit2
open GoblintCil
open Z
Expand Down
1 change: 1 addition & 0 deletions unittest/cdomains/lvalTest.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open OUnit2
open GoblintCil

Expand Down
1 change: 1 addition & 0 deletions unittest/domains/mapDomainTest.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open OUnit2

module Pretty = GoblintCil.Pretty
Expand Down
1 change: 1 addition & 0 deletions unittest/maindomaintest.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
(* open! Defaults (* Enums / ... need initialized conf *) *)
open GoblintCil

Expand Down
1 change: 1 addition & 0 deletions unittest/solver/solverTest.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open OUnit2
open GoblintCil
open Pretty
Expand Down
1 change: 1 addition & 0 deletions unittest/util/compilationDatabaseTest.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
open Goblint_lib
open OUnit2

let command_object_from_string s =
Expand Down