Skip to content

Commit 03f93ef

Browse files
Merge pull request #8002 from thomasspriggs/tas/smt-test-flip
Replace `new-smt-backend` tag with inverted `no-new-smt` tag
2 parents a8de0b7 + 4590da1 commit 03f93ef

File tree

1,125 files changed

+1128
-1128
lines changed

Some content is hidden

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

1,125 files changed

+1128
-1128
lines changed

regression/book-examples/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ add_test_pl_profile(
3030
"CORE"
3131
)
3232

33-
# If `-I` (include flag) is passed, test.pl will run only the tests matching the label following it.
33+
# If `-X` (exclude flag) is passed, test.pl will exclude the tests matching the label following it.
3434
add_test_pl_profile(
3535
"book-examples-new-smt-backend"
3636
"$<TARGET_FILE:cbmc> --incremental-smt2-solver 'z3 --smt2 -in'"
37-
"${gcc_only_string}-I;new-smt-backend;-s;new-smt-backend"
37+
"${gcc_only_string}-X;no-new-smt;-s;new-smt-backend"
3838
"CORE"
3939
)
4040

regression/book-examples/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ test-paths-lifo:
3131

3232
test-new-smt-backend:
3333
@../test.pl -e -p -c "../../../src/cbmc/cbmc --incremental-smt2-solver 'z3 --smt2 -in'" \
34-
-I new-smt-backend \
34+
-X no-new-smt \
3535
-s new-smt-backend $(GCC_ONLY)
3636

3737
tests.log: ../test.pl test

regression/book-examples/abs/C1.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
abs.c
33
--function abs
44
^EXIT=0$

regression/book-examples/abs/C13.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
abs.c
33
--function abs --signed-overflow-check --show-goto-functions
44
^EXIT=0$

regression/book-examples/abs/C2.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
abs.c
33
--function abs --signed-overflow-check
44
^EXIT=10$

regression/book-examples/abs/C3.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
abs.c
33
--function abs --signed-overflow-check --trace
44
^EXIT=10$

regression/book-examples/binsearch/C4.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
binsearch.c
33
--function binsearch --unwind 6 --bounds-check --unwinding-assertions
44
^EXIT=0$

regression/book-examples/lock/depth.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
lock.c
33
--depth 10
44
^EXIT=0$

regression/book-examples/lock/unwind1.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
lock.c
33
--unwind 1
44
^EXIT=0$

regression/book-examples/lock/unwind2.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
lock.c
33
--unwind 2
44
^EXIT=10$

regression/book-examples/login/C5.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
login.c
33
--unwind 20 --bounds-check
44
^EXIT=10$

regression/book-examples/login/C6.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
login.c
33
--show-properties --bounds-check --pointer-check
44
^EXIT=0$

regression/book-examples/login/C7.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
login.c
33
--unwind 20 --show-vcc --bounds-check --pointer-check
44
^EXIT=0$

regression/book-examples/login/C8.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
login.c
33
--unwind 20 --bounds-check --pointer-check
44
^EXIT=10$

regression/book-examples/login/C9.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
login.c
33
--unwind 20 --bounds-check --pointer-check --trace
44
^EXIT=10$

regression/book-examples/pid/C11.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
pid.c
33
--cover mcdc --unwind 6
44
^EXIT=0$

regression/cbmc-primitives/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ if(Z3_EXISTS)
55
"$<TARGET_FILE:cbmc>"
66
)
77

8-
# If `-I` (include flag) is passed, test.pl will run only the tests matching the label following it.
8+
# If `-X` (exclude flag) is passed, test.pl will exclude the tests matching the label following it.
99
add_test_pl_profile(
1010
"cbmc-primitives-new-smt-backend"
1111
"$<TARGET_FILE:cbmc> --incremental-smt2-solver 'z3 --smt2 -in'"
12-
"-I;new-smt-backend;-s;new-smt-backend"
12+
"-X;no-new-smt;-s;new-smt-backend"
1313
"CORE"
1414
)
1515
else()

regression/cbmc-primitives/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ test:
44
@../test.pl -e -p -c ../../../src/cbmc/cbmc
55

66
test.smt2_incr:
7-
@../test.pl -e -p -I new-smt-backend -c "../../../src/cbmc/cbmc --incremental-smt2-solver 'z3 --smt2 -in' --validate-goto-model --validate-ssa-equation"
7+
@../test.pl -e -p -X no-new-smt -c "../../../src/cbmc/cbmc --incremental-smt2-solver 'z3 --smt2 -in' --validate-goto-model --validate-ssa-equation"
88

99
tests.log: ../test.pl
1010
@../test.pl -e -p -c ../../../src/cbmc/cbmc

regression/cbmc-primitives/alternating_quantifiers_6231/exists_in_forall.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
exists_in_forall.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/alternating_quantifiers_6231/forall_in_exists.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
forall_in_exists.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/dynamic-object-02/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--no-simplify --no-propagation
44
^EXIT=10$

regression/cbmc-primitives/dynamic-object-02/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=10$

regression/cbmc-primitives/exists_assume_6231/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
test.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/exists_assume_6231/test2.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
test2.c
33
--pointer-check
44
^EXIT=10$

regression/cbmc-primitives/exists_memory_checks/invalid_index_range.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
invalid_index_range.c
33
--pointer-check
44
^EXIT=10$

regression/cbmc-primitives/exists_memory_checks/negated_exists.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
negated_exists.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/exists_memory_checks/smt_missing_range_check.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE smt-backend
1+
CORE smt-backend no-new-smt
22
smt_missing_range_check.c
33
--pointer-check -z3
44
^EXIT=10$

regression/cbmc-primitives/exists_memory_checks/valid_index_range.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
valid_index_range.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/forall_6231_1/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
test.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/forall_6231_2/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
test.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/forall_6231_3/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
test.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/forall_6231_3/test_malloc_less_than_bound.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
test_malloc_less_than_bound.c
33
--pointer-check
44
^EXIT=10$

regression/cbmc-primitives/forall_6231_4/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
test.c
33
--div-by-zero-check
44
^EXIT=10$

regression/cbmc-primitives/implication_statement_checks_1/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
--div-by-zero-check
33
test.c
44
^EXIT=0$

regression/cbmc-primitives/pointer-offset-01/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--no-simplify --no-propagation
44
^EXIT=10$

regression/cbmc-primitives/pointer-offset-01/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=10$

regression/cbmc-primitives/r_w_ok_bug/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check --no-simplify --no-propagation
44
^\[main.pointer_dereference.\d+\] line 8 dereference failure: pointer outside object bounds in \*p1: FAILURE$

regression/cbmc-primitives/r_w_ok_inconsistent_invalid/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check --no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/r_w_ok_inconsistent_invalid/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/r_w_ok_null/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check --no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/r_w_ok_null/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/r_w_ok_valid/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check --no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/r_w_ok_valid/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/r_w_ok_valid_negated/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check --no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/r_w_ok_valid_negated/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc-primitives/same-object-01/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/same-object-01/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc-primitives/same-object-02/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/same-object-02/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc-primitives/same-object-03/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/same-object-03/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc-primitives/same-object-04/test-no-cp.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--no-simplify --no-propagation
44
^EXIT=0$

regression/cbmc-primitives/same-object-04/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc/ACSL/operators.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE no-new-smt
22
operators.c
33

44
^EXIT=0$

regression/cbmc/ACSL/quantifier-precedence.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
quantifier-precedence.c
33

44
^EXIT=0$

regression/cbmc/ASHR1/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc/Address_of1/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--stop-on-fail
44
^\[main\.assertion

regression/cbmc/Address_of2/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc/Anonymous_Struct1/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
--pointer-check
44
^EXIT=0$

regression/cbmc/Anonymous_Struct2/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc/Anonymous_Struct3/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33
-win32
44
^EXIT=0$

regression/cbmc/Array_Access1/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

regression/cbmc/Array_Access2/test.desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE new-smt-backend
1+
CORE
22
main.c
33

44
^EXIT=0$

0 commit comments

Comments
 (0)