diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/convert/test/jamfile.v2 | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/convert/test/jamfile.v2')
-rw-r--r-- | src/boost/libs/convert/test/jamfile.v2 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/boost/libs/convert/test/jamfile.v2 b/src/boost/libs/convert/test/jamfile.v2 new file mode 100644 index 00000000..9a60a3f5 --- /dev/null +++ b/src/boost/libs/convert/test/jamfile.v2 @@ -0,0 +1,41 @@ +# Convert Jamfile +# Copyright (c) Vladimir Batov 2009-2014 +# Distributed under the Boost Software License, Version 1.0. +# See copy at http://www.boost.org/LICENSE_1_0.txt. + +# bring in the rules for testing +import testing ; + +project convert_test + : requirements + <warnings>on + <toolset>icpc:<cxxflags>"-std=c++11" + <toolset>clang:<cxxflags>"-std=c++11" + <toolset>gcc:<warnings>all + <toolset>gcc:<cxxflags>"-O3 -std=c++0x -Wno-unused-variable -Wno-unused-local-typedefs -Wno-long-long" + <toolset>msvc:<warnings>all + <toolset>msvc:<cxxflags>"/wd4996 /wd4512 /wd4610 /wd4510 /wd4127 /wd4701 /wd4127 /wd4305 /wd4244 /wd4714 /wd4189" + <toolset>msvc:<asynch-exceptions>on + <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE + <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE + <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS + <toolset>msvc:<define>_CRT_SECURE_NO_WARNINGS + <include>../include + ; + +exe convert_test_performance : performance.cpp /boost/timer//boost_timer ; +exe convert_test_performance_spirit : performance_spirit.cpp ; + +run callable.cpp : : : : convert_test_callable ; +run fallbacks.cpp : : : : convert_test_fallbacks ; +run spirit_converter.cpp : : : : convert_test_spirit_converter ; +run stream_converter.cpp : : : : convert_test_stream_converter ; +run printf_converter.cpp : : : : convert_test_printf_converter ; +run strtol_converter.cpp : : : : convert_test_strtol_converter ; +run lcast_converter.cpp : : : : convert_test_lcast_converter ; +run encryption.cpp : : : : convert_test_encryption ; +run user_type.cpp : : : : convert_test_user_type ; +run str_to_int.cpp : : : : convert_test_str_to_int ; +run sfinae.cpp : : : : convert_test_sfinae ; +run has_member.cpp : : : : convert_test_has_member ; + |