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
+
1
7
add_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}
3
9
)
Original file line number Diff line number Diff line change 1
- CORE
1
+ CORE winbug
2
2
Sync
3
3
--java-threading --throw-runtime-exceptions --cp `../../../../scripts/format_classpath.sh . ../../../src/java_bytecode/library/core-models.jar`
4
4
^EXIT=0$
Original file line number Diff line number Diff line change @@ -8,9 +8,13 @@ add_test_pl_tests(
8
8
"$<TARGET_FILE:jbmc> --validate-goto-model --validate-ssa-equation" ${exclude_win_broken_tests}
9
9
)
10
10
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 (
12
15
"jbmc-strings-symex-driven-lazy-loading"
13
16
"$<TARGET_FILE:jbmc> --validate-goto-model --validate-ssa-equation --symex-driven-lazy-loading"
14
17
"-C;-X;symex-driven-lazy-loading-expected-failure;-s;symex-driven-loading"
15
18
"CORE"
16
- )
19
+ )
20
+ endif ()
You can’t perform that action at this time.
0 commit comments