mirror of
https://github.com/boostorg/thread.git
synced 2026-01-19 04:42:13 +00:00
Try to catch the CircleCi clang issues.
This commit is contained in:
@@ -45,7 +45,7 @@ build_steps: &build_steps
|
||||
command: |
|
||||
echo "using $TOOLSET : : $COMPILER : <cxxflags>-std=$CXXSTD <cxxflags>$CXXFLAGS <cxxflags>$DEFINES ;" > ~/user-config.jam
|
||||
cd ../boost-root
|
||||
./b2 -j8 -l60 libs/thread/test toolset=$TOOLSET
|
||||
./b2 -d2 -j8 -l60 libs/thread/test toolset=$TOOLSET
|
||||
|
||||
mac_build: &mac_build
|
||||
macos:
|
||||
|
||||
@@ -206,8 +206,8 @@ BOOST_AUTO_TEST_CASE(test_timed_join)
|
||||
|
||||
BOOST_AUTO_TEST_CASE(test_swap)
|
||||
{
|
||||
boost::thread t(simple_thread);
|
||||
boost::thread t2(simple_thread);
|
||||
boost::thread t(&simple_thread);
|
||||
boost::thread t2(&simple_thread);
|
||||
boost::thread::id id1=t.get_id();
|
||||
boost::thread::id id2=t2.get_id();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user