We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc5cbf1 commit 0a6daf9Copy full SHA for 0a6daf9
regression/cbmc/CMakeLists.txt
@@ -22,16 +22,20 @@ add_test_pl_profile(
22
${gcc_only}
23
)
24
25
-add_test_pl_profile(
+if("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
26
+ message(WARNING "Tests are failing on windows under this config, for reasons unknown. Investigation is pending.")
27
+else()
28
+ add_test_pl_profile(
29
"cbmc-cprover-smt2"
30
"$<TARGET_FILE:cbmc> --cprover-smt2"
31
"-C;-X;broken-smt-backend;-s;cprover-smt2"
32
"CORE"
33
-)
34
+ )
35
-set_property(
- TEST "cbmc-cprover-smt2-CORE"
- PROPERTY ENVIRONMENT
36
- "PATH=$ENV{PATH}:${CMAKE_BINARY_DIR}/bin"
37
+ set_property(
+ TEST "cbmc-cprover-smt2-CORE"
38
+ PROPERTY ENVIRONMENT
39
+ "PATH=$ENV{PATH}:${CMAKE_BINARY_DIR}/bin"
40
41
+endif()
0 commit comments