File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1+ if ("${CMAKE_SYSTEM_NAME} " STREQUAL "Windows" )
2+ set (exclude_win_broken_tests -X winbug)
3+ else ()
4+ set (exclude_win_broken_tests "" )
5+ endif ()
6+
17add_test_pl_tests(
2- "$<TARGET_FILE:jbmc> --validate-goto-model --validate-ssa-equation"
8+ "$<TARGET_FILE:jbmc> --validate-goto-model --validate-ssa-equation" ${exclude_win_broken_tests}
39)
Original file line number Diff line number Diff line change 1- CORE
1+ CORE winbug
22Sync
33--java-threading --throw-runtime-exceptions --cp `../../../../scripts/format_classpath.sh . ../../../src/java_bytecode/library/core-models.jar`
44^EXIT=0$
Original file line number Diff line number Diff line change @@ -8,9 +8,13 @@ add_test_pl_tests(
88 "$<TARGET_FILE:jbmc> --validate-goto-model --validate-ssa-equation" ${exclude_win_broken_tests}
99)
1010
11- add_test_pl_profile(
11+ if ("${CMAKE_SYSTEM_NAME} " STREQUAL "Windows" )
12+ message (WARNING "skipping broken jbmc-strings/ tests on windows" )
13+ else ()
14+ add_test_pl_profile(
1215 "jbmc-strings-symex-driven-lazy-loading"
1316 "$<TARGET_FILE:jbmc> --validate-goto-model --validate-ssa-equation --symex-driven-lazy-loading"
1417 "-C;-X;symex-driven-lazy-loading-expected-failure;-s;symex-driven-loading"
1518 "CORE"
16- )
19+ )
20+ endif ()
You can’t perform that action at this time.
0 commit comments