File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -13,27 +13,27 @@ else()
13
13
endif ()
14
14
15
15
add_test_pl_tests(
16
- "$<TARGET_FILE:cbmc> --validate-goto-model --validate-ssa-equation" -X smt-backend ${gcc_only} ${exclude_win_broken_tests}
16
+ "$<TARGET_FILE:cbmc> --no-standard-checks -- validate-goto-model --validate-ssa-equation" -X smt-backend ${gcc_only} ${exclude_win_broken_tests}
17
17
)
18
18
19
19
add_test_pl_profile(
20
20
"book-examples-paths-lifo"
21
- "$<TARGET_FILE:cbmc> --paths lifo"
21
+ "$<TARGET_FILE:cbmc> --no-standard-checks -- paths lifo"
22
22
"-C;-X;thorough-paths;-X;smt-backend;-X;paths-lifo-expected-failure;${gcc_only_string} -s;paths-lifo;${exclude_win_broken_tests_string} "
23
23
"CORE"
24
24
)
25
25
26
26
add_test_pl_profile(
27
27
"book-examples-cprover-smt2"
28
- "$<TARGET_FILE:cbmc> --cprover-smt2"
28
+ "$<TARGET_FILE:cbmc> --no-standard-checks -- cprover-smt2"
29
29
"-C;-X;broken-smt-backend;-X;thorough-smt-backend;-X;broken-cprover-smt-backend;-X;thorough-cprover-smt-backend;${gcc_only_string} -s;cprover-smt2;${exclude_win_broken_tests_string} "
30
30
"CORE"
31
31
)
32
32
33
33
# If `-X` (exclude flag) is passed, test.pl will exclude the tests matching the label following it.
34
34
add_test_pl_profile(
35
35
"book-examples-new-smt-backend"
36
- "$<TARGET_FILE:cbmc> --incremental-smt2-solver 'z3 --smt2 -in'"
36
+ "$<TARGET_FILE:cbmc> --no-standard-checks -- incremental-smt2-solver 'z3 --smt2 -in'"
37
37
"${gcc_only_string} -X;no-new-smt;-s;new-smt-backend"
38
38
"CORE"
39
39
)
Original file line number Diff line number Diff line change @@ -10,27 +10,27 @@ GCC_ONLY =
10
10
endif
11
11
12
12
test :
13
- @../test.pl -e -p -c " ../../../src/cbmc/cbmc --validate-goto-model --validate-ssa-equation" -X smt-backend $(GCC_ONLY )
13
+ @../test.pl -e -p -c " ../../../src/cbmc/cbmc --no-standard-checks -- validate-goto-model --validate-ssa-equation" -X smt-backend $(GCC_ONLY )
14
14
15
15
test-cprover-smt2 :
16
- @../test.pl -e -p -c " ../../../src/cbmc/cbmc --cprover-smt2" \
16
+ @../test.pl -e -p -c " ../../../src/cbmc/cbmc --no-standard-checks -- cprover-smt2" \
17
17
-X broken-smt-backend -X thorough-smt-backend \
18
18
-X broken-cprover-smt-backend -X thorough-cprover-smt-backend \
19
19
-s cprover-smt2 $(GCC_ONLY )
20
20
21
21
test-z3 :
22
- @../test.pl -e -p -c " ../../../src/cbmc/cbmc --z3" \
22
+ @../test.pl -e -p -c " ../../../src/cbmc/cbmc --no-standard-checks -- z3" \
23
23
-X broken-smt-backend -X thorough-smt-backend \
24
24
-X broken-z3-smt-backend -X thorough-z3-smt-backend \
25
25
-s z3 $(GCC_ONLY )
26
26
27
27
test-paths-lifo :
28
- @../test.pl -e -p -c " ../../../src/cbmc/cbmc --paths lifo" \
28
+ @../test.pl -e -p -c " ../../../src/cbmc/cbmc --no-standard-checks -- paths lifo" \
29
29
-X thorough-paths -X smt-backend -X paths-lifo-expected-failure \
30
30
-s paths-lifo $(GCC_ONLY )
31
31
32
32
test-new-smt-backend :
33
- @../test.pl -e -p -c " ../../../src/cbmc/cbmc --incremental-smt2-solver 'z3 --smt2 -in'" \
33
+ @../test.pl -e -p -c " ../../../src/cbmc/cbmc --no-standard-checks -- incremental-smt2-solver 'z3 --smt2 -in'" \
34
34
-X no-new-smt \
35
35
-s new-smt-backend $(GCC_ONLY )
36
36
You can’t perform that action at this time.
0 commit comments