Skip to content

Commit

Permalink
Fix tests using Interprocess not compiling on Cygwin
Browse files Browse the repository at this point in the history
  • Loading branch information
k3DW committed Aug 25, 2024
1 parent 1b00371 commit 57b880d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ path-constant BOOST_UNORDERED_TEST_DIR : . ;

run quick.cpp ;

compile debuggability/visualization_tests.cpp ;
compile debuggability/visualization_tests.cpp
: <target-os>cygwin:<define>_X_OPEN_SOURCE=600
;

compile unordered/self_include_tests_obj.cpp
: <define>BOOST_UNORDERED_HEADER="boost/unordered_map.hpp"
Expand Down Expand Up @@ -294,7 +296,7 @@ for local container in $(MMAP_CONTAINERS)
: <define>BOOST_UNORDERED_FOA_MMAP_MAP_TYPE="boost::$(container)"
<warnings>off
<link>static
<target-os>cygwin:<build>no
<target-os>cygwin:<define>_X_OPEN_SOURCE=600
: foa_mmap_$(container)_tests ;
}

Expand Down Expand Up @@ -396,7 +398,7 @@ rule make_cfoa_interprocess_concurrency_tests ( name : defines ? )
<toolset>clang-3.6:<build>no # idem
<toolset>clang-3.7:<build>no # idem
<toolset>clang-3.8:<build>no # idem
<target-os>cygwin:<build>no
<target-os>cygwin:<define>_X_OPEN_SOURCE=600
: $(name) ;
}

Expand Down

0 comments on commit 57b880d

Please sign in to comment.