We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b54ec34 commit fe2d682Copy full SHA for fe2d682
check.sh
@@ -14,20 +14,7 @@ good=0
14
bad=0
15
declare -a bad_tests
16
17
-# https://github.com/rems-project/cerberus/pull/494 exposed an issue in
18
-# the Z3 which is a bit difficult to work around in the implementation
19
-# itself and so we have this hacky work-around instead whilst it is fixed
20
-# upstream https://github.com/Z3Prover/z3/issues/7352
21
-if [[ "${CN}" == "cn verify" ]] \
22
- || [[ "${CN}" == *"--solver-type=z3"* ]]; then
23
- FILES=($(find "${SCRIPT_DIR}/src/examples" -name '*.c' \
24
- ! -name queue_pop.c \
25
- ! -name queue_push_induction.c))
26
-else
27
- FILES=($(find "${SCRIPT_DIR}/src/examples" -name '*.c'))
28
-fi
29
-
30
-for file in "${FILES[@]}"
+for file in $SCRIPT_DIR/src/examples/*c;
31
do
32
echo "Checking $file ..."
33
$CN $file
0 commit comments