Skip to content

Commit 22102cc

Browse files
committed
Replace new-smt-backend tag with inverted no-new-smt tag
This makes it somewhat more straight forward to find tests where the new smt backend is not currently run. It also helps with testing with the new smt support on new tests by default. The tags in the `.desc` files are flipped using a one-off python script. I am including it here below in the commit message body rather than in a separate commit as it is intended for a singular usage and it may be more straight forward to review the script than the `.desc` file updates. ``` import os import sys from pathlib import Path def usage(): print("Usage " + sys.argv[0] + " [directory]") print("Processes all test tags within a [directory].") def update_file(file_path) -> bool: with file_path.open("rt") as file: lines = file.readlines() if len(lines) == 0: print("File " + file_path + " is empty") return False if "CORE" not in lines[0]: return False if " new-smt-backend" not in lines[0] and " no-new-smt" not in lines[0]: lines[0] = lines[0].replace("\n", " no-new-smt\n") else: lines[0] = lines[0].replace(" new-smt-backend", "") with file_path.open("wt") as file: file.writelines(lines) return True def main() -> int: if len(sys.argv) != 2: usage() return os.EX_USAGE directory = Path(sys.argv[1]) if not directory.is_absolute(): directory = Path(os.getcwd()) / directory print("Running against directory " + os.fspath(directory)) if not directory.is_dir(): print("Error - This is not a directory.") return os.EX_IOERR files = directory.glob("*/*.desc") tests_updated = 0 for file_path in files: if not file_path.is_file(): print(os.fspath(file_path) + " was expected to be a file but is " "not a file") continue if update_file(file_path): tests_updated += 1 if tests_updated == 0: print("Error - No tests updated") return os.EX_NOTFOUND print(str(tests_updated) + " tests updated.") return os.EX_OK if __name__ == '__main__': sys.exit(main()) ```
1 parent cb62568 commit 22102cc

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 `-I` (include 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` (include 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)