We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63faa7f commit 1a96b1cCopy full SHA for 1a96b1c
regression/cbmc-concurrency/CMakeLists.txt
@@ -1,4 +1,4 @@
1
-if((NOT WIN32) AND (NOT APPLE))
+if((NOT WIN32) AND (NOT APPLE) AND (NOT (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")))
2
add_test_pl_tests(
3
"$<TARGET_FILE:cbmc> --validate-goto-model --validate-ssa-equation"
4
)
regression/cbmc-concurrency/Makefile
@@ -3,9 +3,9 @@ default: tests.log
include ../../src/config.inc
include ../../src/common
5
6
-ifeq ($(filter-out OSX MSVC,$(BUILD_ENV_)),)
+ifeq ($(filter-out OSX MSVC FreeBSD,$(BUILD_ENV_)),)
7
# no POSIX threads on Windows
8
- # for OSX we'd need sound handling of pointers in multi-threaded programs
+ # 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