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 60e210f commit c954ba7Copy full SHA for c954ba7
regression/cbmc-concurrency/CMakeLists.txt
@@ -1,4 +1,4 @@
1
-if((NOT WIN32) AND (NOT APPLE) AND (NOT (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")))
+if(NOT WIN32)
2
add_test_pl_tests(
3
"$<TARGET_FILE:cbmc> --validate-goto-model --validate-ssa-equation"
4
)
regression/cbmc-concurrency/Makefile
@@ -3,9 +3,8 @@ default: tests.log
include ../../src/config.inc
include ../../src/common
5
6
-ifeq ($(filter-out OSX MSVC FreeBSD,$(BUILD_ENV_)),)
+ifeq ($(filter-out MSVC,$(BUILD_ENV_)),)
7
# no POSIX threads on Windows
8
- # for OSX and FreeBSD we'd need sound handling of pointers in multi-threaded programs
9
no_pthread = -X pthread
10
endif
11
0 commit comments