Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable default flags on for checks #8006

Closed
wants to merge 8 commits into from
Closed
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 regression/cbmc-shadow-memory/char1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--unwind 11
--unwind 11 --no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-shadow-memory/errno1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-shadow-memory/linked-list1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-shadow-memory/maybe-null1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-shadow-memory/pointer-checks1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--verbosity 10 --pointer-check
--verbosity 10
^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-shadow-memory/pointer-checks2/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--verbosity 10 --pointer-check
--verbosity 10
^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-shadow-memory/static1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
3 changes: 3 additions & 0 deletions regression/cbmc-shadow-memory/strdup1/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ int main()
__CPROVER_field_decl_global("field1", (unsigned __CPROVER_bitvector[2])0);

char *s = (char *)malloc(3 * sizeof(char));
// Terminate string so that `strdup` will not call `strlen`
// on a string without a null-terminator.
s[2] = '\0';
assert(__CPROVER_get_field(&s[0], "field1") == 0);
assert(__CPROVER_get_field(&s[1], "field1") == 0);

Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc-shadow-memory/strdup1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--unwind 4
--unwind 4 --no-standard-checks --no-built-in-assertions
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/ACSL/operators.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE no-new-smt
operators.c

--no-signed-overflow-check
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Address_of1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--stop-on-fail
--stop-on-fail --no-pointer-check
^\[main\.assertion
^EXIT=0$
^SIGNAL=0$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Anonymous_Struct1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Array_UF21/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--arrays-uf-always --bounds-check
--arrays-uf-always
^VERIFICATION FAILED$
^EXIT=10$
^SIGNAL=0$
Expand Down
4 changes: 2 additions & 2 deletions regression/cbmc/Array_operations1/full-slice.desc
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ main.c
^\[test_unequal\.assertion\.4\] .* expected to fail: FAILURE
^\[test_unequal\.assertion\.5\] .* expected to fail: FAILURE
^\[test_unequal\.assertion\.6\] .* expected to fail: FAILURE
^\*\* 5 of 15 failed
^\*\* 5 of 19 failed
^VERIFICATION FAILED$
--
^warning: ignoring
--
Verify the properties of various cprover array primitves
Verify the properties of various CPROVER array primitives.
2 changes: 1 addition & 1 deletion regression/cbmc/Array_operations1/test.desc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ main.c
^\[test_unequal\.assertion\.4\] .* expected to fail: FAILURE
^\[test_unequal\.assertion\.5\] .* expected to fail: FAILURE
^\[test_unequal\.assertion\.6\] .* expected to fail: FAILURE
^\*\* 5 of 15 failed
^\*\* 5 of 19 failed
^VERIFICATION FAILED$
--
^warning: ignoring
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Associativity1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-signed-overflow-check
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/BV_Arithmetic3/test.desc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ main.c

^EXIT=0$
^SIGNAL=0$
(Starting CEGAR Loop|^Generated 1 VCC\(s\), 0 remaining after simplification$)
(Starting CEGAR Loop|^Generated 68 VCC\(s\), 0 remaining after simplification$)
^VERIFICATION SUCCESSFUL$
--
^warning: ignoring
2 changes: 1 addition & 1 deletion regression/cbmc/BV_Arithmetic4/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--unwind 32
--unwind 32 --no-signed-overflow-check --no-undefined-shift-check
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Bitfields3/paths.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE no-new-smt
main.c
--pointer-check --bounds-check --paths lifo
--paths lifo
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Bitfields3/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE no-new-smt
main.c
--pointer-check --bounds-check

^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Bool/bool5-full-slice.desc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CORE
bool5.c
--full-slice
Generated 4 VCC\(s\), 0 remaining after simplification
Generated 10 VCC\(s\), 0 remaining after simplification
^VERIFICATION SUCCESSFUL$
^EXIT=0$
^SIGNAL=0$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Bool/bool5.desc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CORE
bool5.c

Generated 4 VCC\(s\), 0 remaining after simplification
Generated 10 VCC\(s\), 0 remaining after simplification
^VERIFICATION SUCCESSFUL$
^EXIT=0$
^SIGNAL=0$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Boolean_Guards1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--bounds-check --pointer-check
--no-signed-overflow-check
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Endianness5/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--little-endian --pointer-check
--little-endian
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Failed_Symbols1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Float-div2/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE broken-z3-smt-backend no-new-smt
main.c
--floatbv
--floatbv --no-built-in-assertions
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Float-div3/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE broken-z3-smt-backend no-new-smt
main.c
--floatbv
--floatbv --no-built-in-assertions
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Float-flags-no-simp1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE broken-cprover-smt-backend thorough-paths no-new-smt
main.c
--floatbv --no-simplify
--floatbv --no-simplify --no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Float-flags-simp1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE broken-cprover-smt-backend no-new-smt
main.c
--floatbv
--floatbv --no-standard-checks
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Float13/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-div-by-zero-check
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Free1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Free3/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Free4/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Function1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c

--no-signed-overflow-check
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Function5/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check --bounds-check

^SIGNAL=0$
^EXIT=10$
^\[.*\] .* dereference failure: pointer outside object bounds in \*p: FAILURE$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Function_Pointer14/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Function_Pointer16/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Function_Pointer18/test.desc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ main.c
^EXIT=10$
^SIGNAL=0$
\[f2.assertion.1\] line [0-9]+ assertion 0: SUCCESS
\[main.pointer_dereference.1\] line 28 dereferenced function pointer must be f2: FAILURE$
\[main.pointer_dereference.\d*\] line 28 dereferenced function pointer must be f2: FAILURE$
\[main.assertion.1\] line [0-9]+ assertion x == 1: SUCCESS
\[main.assertion.2\] line [0-9]+ assertion x == 2: SUCCESS
^VERIFICATION FAILED$
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--function foo --pointer-check
--function foo
^\[foo.assertion.\d+\] line \d+ assertion other_function\(4\) > 5: SUCCESS$
^\[foo.pointer_dereference.\d+\] line \d+ no candidates for dereferenced function pointer: FAILURE$
^EXIT=10$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Linking6/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
module.c --pointer-check
module.c
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Linking7/member-name-mismatch.desc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module2.c
^VERIFICATION FAILED$
line 21 assertion \*g\.a == 42: SUCCESS
line 22 assertion \*g\.c == 41: FAILURE
^\*\* 1 of 3 failed
^\*\* 1 of \d+ failed
--
^warning: ignoring
2 changes: 1 addition & 1 deletion regression/cbmc/Linking7/test.desc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.c
^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
^\*\* 1 of 3 failed
^\*\* 1 of \d+ failed
line 21 assertion \*g\.a == 42: SUCCESS
line 22 assertion \*g\.b == 41: FAILURE
--
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Linking8/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
b.c
a.c --pointer-check
a.c
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Local_out_of_scope1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=10$
^SIGNAL=0$
^VERIFICATION FAILED$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Local_out_of_scope4/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Malloc1/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE
main.c
--pointer-check

^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Malloc10/test.desc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CORE no-new-smt
main.c
--pointer-check

^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
Expand Down
Loading