2
0
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:
Vicente J. Botet Escriba
2018-10-16 00:02:31 +02:00
parent 9a3b8bb4b0
commit 340cc5ab61
2 changed files with 3 additions and 3 deletions

View File

@@ -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:

View File

@@ -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();