1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#==============================================================================
# Copyright (c) 2001-2009 Joel de Guzman
# Copyright (c) 2001-2009 Hartmut Kaiser
# Copyright (c) 2017-2019 Nikita Kniazev
#
# Use, modification and distribution is subject to the Boost Software
# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#==============================================================================
local 9-11 = 9 10 11 ;
project spirit_v2_repository/test
: requirements
<include>.
<c++-template-depth>300
<known-warnings>hide,<toolset>gcc-$(9-11):<cxxflags>-Wno-deprecated-copy # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94492
# Suppress C++03 deprecation warnings from other libraries
<define>BOOST_BIND_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
<define>BOOST_HASH_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
<define>BOOST_ENDIAN_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
<define>BOOST_FUNCTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
<define>BOOST_SMART_PTR_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
<define>BOOST_SYSTEM_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
<define>BOOST_TYPEOF_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
<define>BOOST_UNORDERED_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
:
:
;
###############################################################################
alias qi-pch : : <pch>on-spirit:<source>../../test/qi//pch ;
alias ka-pch : : <pch>on-spirit:<source>../../test/karma//pch ;
explicit qi-pch ka-pch ;
###############################################################################
import os ;
local keywords_reqs ;
if [ os.environ APPVEYOR ]
{
# Workaround MSVC codegen bug. See #400 for the info.
keywords_reqs = <toolset>msvc-14.1:<inlining>off ;
}
# bring in rules for testing
import testing ;
{
test-suite spirit_v2_repository :
# run Qi repository tests
[ run qi-pch qi/advance.cpp : : : : qi_repo_advance ]
[ run qi-pch qi/confix.cpp : : : : qi_repo_confix ]
[ run qi-pch qi/distinct.cpp : : : : qi_repo_distinct ]
[ run qi-pch qi/subrule.cpp : : : : qi_repo_subrule ]
[ run qi-pch qi/keywords.cpp : : : $(keywords_reqs) : qi_repo_keywords ]
[ run qi-pch qi/seek.cpp : : : : qi_repo_seek ]
# run Karma repository tests
[ run ka-pch karma/confix.cpp : : : : karma_repo_confix ]
[ run ka-pch karma/subrule.cpp : : : : karma_repo_subrule ]
;
}
|