Skip to content

Commit 04e1c5b

Browse files
committed
Merge branch 'fork-checks' into checks
2 parents 798b44c + 2d347ed commit 04e1c5b

Some content is hidden

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

55 files changed

+678
-249
lines changed

.github/workflows/coverage.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ jobs:
5959
run: ./make.sh headers
6060

6161
- name: Test
62-
run: opam exec -- dune runtest --instrument-with bisect_ppx
62+
env:
63+
BISECT_FILE: ${{ github.workspace }}/_build/coverage/bisect
64+
run: |
65+
mkdir -p _build/coverage
66+
opam exec -- dune runtest --force --instrument-with bisect_ppx
6367
6468
- run: opam exec -- bisect-ppx-report send-to Coveralls
6569
env:

.github/workflows/unlocked.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@ jobs:
193193
run: ruby scripts/update_suite.rb group apron-mukherjee -s
194194

195195
- name: Test marshal regression
196-
run: ruby scripts/update_suite.rb -m
196+
run: ruby scripts/update_suite.rb -m -s
197197

198198
- name: Test incremental regression
199-
run: ruby scripts/update_suite.rb -i
199+
run: ruby scripts/update_suite.rb -i -s
200200

201201
- name: Test incremental regression with cfg comparison
202-
run: ruby scripts/update_suite.rb -c
202+
run: ruby scripts/update_suite.rb -c -s
203203

204204
gobview:
205205
strategy:

conf/svcomp-ghost.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@
109109
},
110110
"null-pointer": {
111111
"dereference": "assume_none"
112+
},
113+
"malloc": {
114+
"fail": false,
115+
"zero": "pointer"
112116
}
113117
},
114118
"witness": {

conf/svcomp-yaml-validate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@
8989
},
9090
"null-pointer": {
9191
"dereference": "assume_none"
92+
},
93+
"malloc": {
94+
"fail": false,
95+
"zero": "pointer"
9296
}
9397
}
9498
}

conf/svcomp-yaml.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@
106106
},
107107
"null-pointer": {
108108
"dereference": "assume_none"
109+
},
110+
"malloc": {
111+
"fail": false,
112+
"zero": "pointer"
109113
}
110114
}
111115
}

conf/svcomp21.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@
6161
},
6262
"null-pointer": {
6363
"dereference": "assume_none"
64+
},
65+
"malloc": {
66+
"fail": false,
67+
"zero": "pointer"
6468
}
6569
}
6670
}

conf/svcomp22.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@
6464
},
6565
"null-pointer": {
6666
"dereference": "assume_none"
67+
},
68+
"malloc": {
69+
"fail": false,
70+
"zero": "pointer"
6771
}
6872
}
6973
}

conf/svcomp23.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@
8787
},
8888
"null-pointer": {
8989
"dereference": "assume_none"
90+
},
91+
"malloc": {
92+
"fail": false,
93+
"zero": "pointer"
9094
}
9195
}
9296
}

conf/svcomp24-validate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@
109109
},
110110
"null-pointer": {
111111
"dereference": "assume_none"
112+
},
113+
"malloc": {
114+
"fail": false,
115+
"zero": "pointer"
112116
}
113117
},
114118
"witness": {

conf/svcomp24.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@
105105
},
106106
"null-pointer": {
107107
"dereference": "assume_none"
108+
},
109+
"malloc": {
110+
"fail": false,
111+
"zero": "pointer"
108112
}
109113
},
110114
"witness": {

0 commit comments

Comments
 (0)