Skip to content

Commit

Permalink
remove test_impl lib
Browse files Browse the repository at this point in the history
  • Loading branch information
klemens-morgenstern committed Oct 25, 2024
1 parent 1e41629 commit 15d0275
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
22 changes: 10 additions & 12 deletions test/v2/Jamfile.jam
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,22 @@ import testing ;
exe target : target.cpp :
<warnings>off <target-os>windows:<source>shell32
<target-os>windows:<source>Ntdll

;

lib test_impl : test_impl.cpp /boost/process//boost_process :
<define>BOOST_PROCESS_V2_SEPARATE_COMPILATION=1
<define>BOOST_TEST_IGNORE_SIGCHLD=1
;
local test_impl = test_impl.cpp /boost/process//boost_process /boost/test//boost_unit_test_framework ;

test-suite standalone :
[ run utf8.cpp test_impl ]
[ run cstring_ref.cpp test_impl ]
[ run environment.cpp test_impl ]
[ run shell.cpp test_impl ]
[ run utf8.cpp $(test_impl) ]
[ run cstring_ref.cpp $(test_impl) ]
[ run environment.cpp $(test_impl) ]
[ run shell.cpp $(test_impl) ]
;

test-suite with_target :
[ run pid.cpp test_impl : --log_level=all --catch_system_errors=no -- : target ]
[ run process.cpp test_impl : --log_level=all --catch_system_errors=no -- : target ]
[ run windows.cpp test_impl : --log_level=all --catch_system_errors=no -- : target : <build>no <target-os>windows:<build>yes <target-os>windows:<source>Advapi32 ]
[ run ext.cpp test_impl : --log_level=all --catch_system_errors=no -- : target : <target-os>darwin:<build>no ]
[ run pid.cpp $(test_impl) : --log_level=all --catch_system_errors=no -- : target ]
[ run process.cpp $(test_impl) : --log_level=all --catch_system_errors=no -- : target ]
[ run windows.cpp $(test_impl) : --log_level=all --catch_system_errors=no -- : target : <build>no <target-os>windows:<build>yes <target-os>windows:<source>Advapi32 ]
[ run ext.cpp $(test_impl) : --log_level=all --catch_system_errors=no -- : target : <target-os>darwin:<build>no ]
;

2 changes: 1 addition & 1 deletion test/v2/test_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

#define BOOST_TEST_IGNORE_SIGCHLD
#define BOOST_TEST_MODULE process_v2_test
#include <boost/test/included/unit_test.hpp>
#include <boost/test/unit_test.hpp>

0 comments on commit 15d0275

Please sign in to comment.