Skip to content

Commit d01ef63

Browse files
committed
Merge branch 'master' into string-unit-domain
2 parents 0d5e145 + 975b502 commit d01ef63

File tree

316 files changed

+6005
-1022
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

316 files changed

+6005
-1022
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ jobs:
6565
- name: Test apron regression (Mukherjee et. al SAS '17 paper') # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
6666
run: ruby scripts/update_suite.rb group apron-mukherjee -s
6767

68+
- name: Test apron termination regression # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
69+
run: ruby scripts/update_suite.rb group termination -s
70+
6871
- name: Test regression cram
6972
run: opam exec -- dune runtest tests/regression
7073

.github/workflows/locked.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ jobs:
6464
- name: Test apron regression (Mukherjee et. al SAS '17 paper') # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
6565
run: ruby scripts/update_suite.rb group apron-mukherjee -s
6666

67+
- name: Test apron termination regression # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
68+
run: ruby scripts/update_suite.rb group termination -s
69+
6770
- name: Test regression cram
6871
run: opam exec -- dune runtest tests/regression
6972

@@ -153,7 +156,7 @@ jobs:
153156
ocaml-compiler: ${{ matrix.ocaml-compiler }}
154157

155158
- name: Set up Node.js ${{ matrix.node-version }}
156-
uses: actions/setup-node@v3
159+
uses: actions/setup-node@v4
157160
with:
158161
node-version: ${{ matrix.node-version }}
159162

.github/workflows/metadata.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
args: --validate
2828

2929
zenodo-validate:
30+
# Zenodo schema URL is dead
31+
if: ${{ false }}
32+
3033
strategy:
3134
matrix:
3235
node-version:
@@ -39,7 +42,7 @@ jobs:
3942
uses: actions/checkout@v4
4043

4144
- name: Set up Node.js ${{ matrix.node-version }}
42-
uses: actions/setup-node@v3
45+
uses: actions/setup-node@v4
4346
with:
4447
node-version: ${{ matrix.node-version }}
4548

.github/workflows/options.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Set up Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424

2525
- name: Install ajv-cli
2626
run: npm install -g ajv-cli
2727

2828
- name: Migrate schema # https://github.com/ajv-validator/ajv-cli/issues/199
29-
run: ajv migrate -s src/util/options.schema.json
29+
run: ajv migrate -s src/common/util/options.schema.json
3030

3131
- name: Validate conf
32-
run: ajv validate -s src/util/options.schema.json -d "conf/**/*.json"
32+
run: ajv validate -s src/common/util/options.schema.json -d "conf/**/*.json"
3333

3434
- name: Validate incremental tests
35-
run: ajv validate -s src/util/options.schema.json -d "tests/incremental/*/*.json"
35+
run: ajv validate -s src/common/util/options.schema.json -d "tests/incremental/*/*.json"

.github/workflows/unlocked.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ jobs:
9292
if: ${{ matrix.apron }}
9393
run: ruby scripts/update_suite.rb group apron-mukherjee -s
9494

95+
- name: Test apron termination regression # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
96+
if: ${{ matrix.apron }}
97+
run: ruby scripts/update_suite.rb group termination -s
98+
9599
- name: Test regression cram
96100
run: opam exec -- dune runtest tests/regression
97101

@@ -156,7 +160,8 @@ jobs:
156160

157161
- name: Downgrade dependencies
158162
# must specify ocaml-base-compiler again to prevent it from being downgraded
159-
run: opam install $(opam exec -- opam-0install --prefer-oldest goblint ocaml-variants.4.14.0+options ocaml-option-flambda)
163+
# prevent num downgrade to avoid dune/jbuilder error: https://github.com/ocaml/dune/issues/5280
164+
run: opam install $(opam exec -- opam-0install --prefer-oldest goblint ocaml-variants.4.14.0+options ocaml-option-flambda num.1.4)
160165

161166
- name: Build
162167
run: ./make.sh nat

.mailmap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Kerem Çakırer <[email protected]> <[email protected]>
2323
Sarah Tilscher <[email protected]>
2424
Karoliine Holter <[email protected]>
2525
26+
2627

2728
Elias Brandstetter <[email protected]> <[email protected]>
2829
@@ -37,3 +38,6 @@ Mireia Cano Pujol <[email protected]>
3738
Felix Krayer <[email protected]>
3839
3940
Manuel Pietsch <[email protected]>
41+
Tim Ortel <[email protected]>
42+
Tomáš Dacík <[email protected]>
43+

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ build:
2020
- pip install json-schema-for-humans
2121
post_build:
2222
- mkdir _readthedocs/html/jsfh/
23-
- generate-schema-doc --config-file jsfh.yml src/util/options.schema.json _readthedocs/html/jsfh/
23+
- generate-schema-doc --config-file jsfh.yml src/common/util/options.schema.json _readthedocs/html/jsfh/

.zenodo.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@
1010
},
1111
{
1212
"name": "Schwarz, Michael",
13-
"affiliation": "Technische Universität München"
13+
"affiliation": "Technische Universität München",
14+
"orcid": "0000-0002-9828-0308"
1415
},
1516
{
1617
"name": "Erhard, Julian",
17-
"affiliation": "Technische Universität München"
18+
"affiliation": "Technische Universität München",
19+
"orcid": "0000-0002-1729-3925"
1820
},
1921
{
2022
"name": "Tilscher, Sarah",
21-
"affiliation": "Technische Universität München"
23+
"affiliation": "Technische Universität München",
24+
"orcid": "0009-0009-9644-7475"
2225
},
2326
{
2427
"name": "Vogler, Ralf",
@@ -30,14 +33,16 @@
3033
},
3134
{
3235
"name": "Vojdani, Vesal",
33-
"affiliation": "University of Tartu"
36+
"affiliation": "University of Tartu",
37+
"orcid": "0000-0003-4336-7980"
3438
}
3539
],
3640
"contributors": [
3741
{
3842
"name": "Seidl, Helmut",
3943
"type": "ProjectLeader",
40-
"affiliation": "Technische Universität München"
44+
"affiliation": "Technische Universität München",
45+
"orcid": "0000-0002-2135-1593"
4146
},
4247
{
4348
"name": "Schwarz, Martin D.",

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## v2.3.0
2+
Functionally equivalent to Goblint in SV-COMP 2024.
3+
4+
* Add termination analysis for loops (#1093).
5+
* Add memory out-of-bounds analysis (#1094, #1197).
6+
* Add memory leak analysis (#1127, #1241, #1246).
7+
* Add SV-COMP `termination`, `valid-memsafety` and `valid-memcleanup` properties support (#1220, #1228, #1201, #1199, #1259, #1262).
8+
* Add YAML witness version 2.0 support (#1238, #1240, #1217, #1226, #1225, #1248).
9+
* Add final warnings about unsound results (#1190, #1191).
10+
* Add many library function specifications (#1167, #1174, #1203, #1205, #1212, #1220, #1239, #1242, #1244, #1254, #1269).
11+
* Adapt automatic configuration tuning (#912, #921, #987, #1168, #1214, #1234).
12+
113
## v2.2.1
214
* Bump batteries lower bound to 3.5.0.
315
* Fix flaky dead code elimination transformation test.

CITATION.cff

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,15 @@ authors: # same authors as in .zenodo.json and dune-project
1212
- given-names: Michael
1313
family-names: Schwarz
1414
affiliation: "Technische Universität München"
15+
orcid: "https://orcid.org/0000-0002-9828-0308"
1516
- given-names: Julian
1617
family-names: Erhard
1718
affiliation: "Technische Universität München"
19+
orcid: "https://orcid.org/0000-0002-1729-3925"
1820
- given-names: Sarah
1921
family-names: Tilscher
2022
affiliation: "Technische Universität München"
23+
orcid: "https://orcid.org/0009-0009-9644-7475"
2124
- given-names: Ralf
2225
family-names: Vogler
2326
affiliation: "Technische Universität München"
@@ -27,6 +30,7 @@ authors: # same authors as in .zenodo.json and dune-project
2730
- given-names: Vesal
2831
family-names: Vojdani
2932
affiliation: "University of Tartu"
33+
orcid: "https://orcid.org/0000-0003-4336-7980"
3034

3135
license: MIT
3236
repository-code: "https://github.com/goblint/analyzer"

0 commit comments

Comments
 (0)