-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdrom.toml
More file actions
203 lines (165 loc) · 5.32 KB
/
Copy pathdrom.toml
File metadata and controls
203 lines (165 loc) · 5.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
[project]
drom-version = "0.1"
share-repo = "https://github.com/OCamlPro/drom-share"
share-version = "0.9.2"
[project]
authors = ["Steven de Oliveira <steven.de-oliveira@ocamlpro.com>", "Nicolas Berthier <nicolas.berthier@ocamlpro.com>"]
bug-reports = "https://gitlab.ocamlpro.com/OCamlPro/seacoral/-/issues"
ci-systems = ["ubuntu-latest", "macos-latest", "windows-latest"]
copyright = "OCamlPro"
edition = "4.14.1"
homepage = "https://ocamlpro.com/seacoral"
license = "AGPL"
min-edition = "4.14.0"
name = "seacoral"
skeleton = "program"
synopsis = "Collaborative Test Generation Toolset for C"
# Note: we use git tags to define the version in the tool. This
# particular field is only used when generating opam package files.
version = "1.2~dev"
# keys that you could also define:
# odoc-target = "...odoc-target..."
# sphinx-target = "...sphinx-target..."
# archive = "...archive..."
# dev-repo = "...dev-repo..."
# doc-api = "...doc-api..."
# doc-gen = "...doc-gen..."
# github-organization = "...github-organization..."
[project]
description = """
SeaCoral is an orchestration tool that is able to combine the power of
a wide range of test generation techniques in order to automatically
produce tests for your C projects.
"""
[project]
skip = [
"test",
"test/output-tests/dune",
"test/output-tests/test1.ml", "test/output-tests/test1.expected",
"test/output-tests/test2.ml", "test/output-tests/test2.expected",
"test/inline-tests/dune",
"test/inline-tests/test.ml",
"test/expect-tests/dune",
"test/expect-tests/test.ml",
"docs/sphinx/index.html",
"sphinx/index.rst",
".github/workflows/workflow.yml"
]
# project-wide library dependencies (not for package-specific deps)
[dependencies]
fmt = ">=0.9.0"
[dependencies.lwt]
libname = "lwt.unix"
# project-wide tools dependencies (not for package-specific deps)
[tools]
dune = ">=3.14"
[tools.ocamlformat]
for-test = true
[tools.odoc]
for-doc = true
[tools.ppx_expect]
for-test = true
[tools.ppx_inline_test]
for-test = true
[project]
# dirs to skip while scanning for dune files
skip-dirs = []
# dirs to scan for share/ folders (with package names)
share-dirs = ["share"]
# build profile to use by default
# build-profile = ...
# Profile options for this project
# [profile]
# dev = { ocaml-flags = "-w +a-4-40-41-42-44" }
# release = { ocaml-flags = "-w -a" }
[profile]
# ...
# project-wide fields (depends on project skeleton)
# examples:
# docker-alpine-image = "ocamlpro/ocaml:4.13"
# dune-lang = "2.1"
# readme-trailer = "..."
# dot-gitignore-trailer = "..."
[fields]
dune = "3.14.0"
dot-gitignore-trailer = """
*.mdl
.envrc
"""
readme-trailer = """
## Running SeaCoral in a Docker container
Instructions for using SeaCoral in a Docker container are provided [in
the `docker` subdirectory](docker/README.md).
"""
[[package]]
dir = "src/seacoral"
# edit 'src/seacoral/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-lib"
# edit 'src/seacoral-lib/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-klee"
# edit 'src/seacoral-klee/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-ltest"
# edit 'src/seacoral-ltest/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-fuzz"
# edit 'src/seacoral-fuzz/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-main"
# edit 'src/seacoral-main/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-store"
# edit 'src/seacoral-store/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-cbmc"
# edit 'src/seacoral-cbmc/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-report"
# edit 'src/seacoral-report/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-project"
# edit 'src/seacoral-project/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-replayer"
# edit 'src/seacoral-replayer/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-sys"
# edit 'src/seacoral-sys/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-basics"
# edit 'src/seacoral-basics/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-c"
# edit 'src/seacoral-c/package.toml' for package-specific options
[[package]]
dir = "src/ez-logs"
# edit 'src/ez-logs/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-values"
# edit 'src/seacoral-values/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-crunch"
# edit 'src/seacoral-crunch/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-config"
# edit 'src/seacoral-config/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-strategy"
# edit 'src/seacoral-strategy/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-core"
# edit 'src/seacoral-core/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-luncov"
# edit 'src/seacoral-luncov/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-corpus"
# edit 'src/seacoral-corpus/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-cil-shims"
# edit 'src/seacoral-cil-shims/package.toml' for package-specific options
[[package]]
dir = "src/seacoral-postproc"
# edit 'src/seacoral-postproc/package.toml' for package-specific options