Skip to content

Commit

Permalink
disable test that is broken since C++20
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Sep 20, 2021
1 parent 15f2eef commit afe0914
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
for /f %%i in ("%GITHUB_BASE_REF%") do if "%%~nxi" == "master" set BOOST_BRANCH=master
echo BOOST_BRANCH: %BOOST_BRANCH%
cd ..
git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
git clone -b %BOOST_BRANCH% --depth 10 https://github.com/boostorg/boost.git boost-root
cd boost-root
xcopy /s /e /q %GITHUB_WORKSPACE% libs\%LIBRARY%\
git submodule update --init tools/boostdep
Expand Down
3 changes: 2 additions & 1 deletion test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import testing ;

local below-c++14 = 98 03 0x 11 ;
local since-c++20 = 2a 20 ;

project
: requirements
Expand Down Expand Up @@ -57,7 +58,7 @@ test-suite variant
[ run auto_visitors.cpp ]
[ run issue42.cpp ]
[ run issue53.cpp ]
[ run overload_selection.cpp ]
[ run overload_selection.cpp : : : "<cxxstd>$(since-c++20)":<build>no ]
[ run recursive_wrapper_move_test.cpp ]
[ run variant_over_joint_view_test.cpp ]
[ run const_ref_apply_visitor.cpp ]
Expand Down

0 comments on commit afe0914

Please sign in to comment.