mirror of
https://github.com/boostorg/uuid.git
synced 2026-01-19 04:42:16 +00:00
Update build.jam, test/Jamfile
This commit is contained in:
17
build.jam
17
build.jam
@@ -1,7 +1,7 @@
|
|||||||
# Copyright René Ferdinand Rivera Morell 2023-2024
|
# Copyright 2023-2024 René Ferdinand Rivera Morell
|
||||||
|
# Copyright 2024 Peter Dimov
|
||||||
# Distributed under the Boost Software License, Version 1.0.
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
# https://www.boost.org/LICENSE_1_0.txt
|
||||||
# http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
|
|
||||||
require-b2 5.2 ;
|
require-b2 5.2 ;
|
||||||
|
|
||||||
@@ -9,18 +9,15 @@ constant boost_dependencies :
|
|||||||
/boost/assert//boost_assert
|
/boost/assert//boost_assert
|
||||||
/boost/config//boost_config
|
/boost/config//boost_config
|
||||||
/boost/throw_exception//boost_throw_exception
|
/boost/throw_exception//boost_throw_exception
|
||||||
/boost/type_traits//boost_type_traits ;
|
/boost/type_traits//boost_type_traits
|
||||||
|
|
||||||
project /boost/uuid
|
|
||||||
: common-requirements
|
|
||||||
<include>include
|
|
||||||
;
|
;
|
||||||
|
|
||||||
|
project /boost/uuid ;
|
||||||
|
|
||||||
explicit
|
explicit
|
||||||
[ alias boost_uuid : : : : <library>$(boost_dependencies) ]
|
[ alias boost_uuid : : : : <include>include <library>$(boost_dependencies) ]
|
||||||
[ alias all : boost_uuid test ]
|
[ alias all : boost_uuid test ]
|
||||||
;
|
;
|
||||||
|
|
||||||
call-if : boost-library uuid
|
call-if : boost-library uuid
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|||||||
@@ -7,11 +7,8 @@
|
|||||||
project
|
project
|
||||||
: requirements
|
: requirements
|
||||||
<warnings>pedantic
|
<warnings>pedantic
|
||||||
<library>/boost/array//boost_array
|
<library>/boost/uuid//boost_uuid
|
||||||
<library>/boost/core//boost_core
|
<library>/boost/core//boost_core
|
||||||
<library>/boost/container_hash//boost_container_hash
|
|
||||||
<library>/boost/predef//boost_predef
|
|
||||||
<library>/boost/random//boost_random
|
|
||||||
;
|
;
|
||||||
|
|
||||||
import os ;
|
import os ;
|
||||||
@@ -59,8 +56,8 @@ run test_include1.cpp test_include2.cpp ;
|
|||||||
# main tests
|
# main tests
|
||||||
|
|
||||||
run test_uuid.cpp
|
run test_uuid.cpp
|
||||||
: : : <define>BOOST_UUID_REPORT_IMPLEMENTATION ;
|
: : : <library>/boost/container_hash//boost_container_hash <define>BOOST_UUID_REPORT_IMPLEMENTATION ;
|
||||||
run test_uuid.cpp : : : <define>BOOST_UUID_NO_SIMD <define>BOOST_UUID_REPORT_IMPLEMENTATION : test_uuid_no_simd ;
|
run test_uuid.cpp : : : <library>/boost/container_hash//boost_container_hash <define>BOOST_UUID_NO_SIMD <define>BOOST_UUID_REPORT_IMPLEMENTATION : test_uuid_no_simd ;
|
||||||
run test_uuid_2.cpp ;
|
run test_uuid_2.cpp ;
|
||||||
run test_uuid_3.cpp ;
|
run test_uuid_3.cpp ;
|
||||||
|
|
||||||
@@ -80,7 +77,8 @@ run test_comparison.cpp : : : <define>BOOST_UUID_NO_SIMD <define>BOOST_UUID_REPO
|
|||||||
|
|
||||||
# test uuid_io.hpp
|
# test uuid_io.hpp
|
||||||
|
|
||||||
run test_io.cpp : : : <library>/boost/lexical_cast//boost_lexical_cast ;
|
run test_io.cpp
|
||||||
|
: : : <library>/boost/lexical_cast//boost_lexical_cast <library>/boost/predef//boost_predef ;
|
||||||
run test_io_2.cpp ;
|
run test_io_2.cpp ;
|
||||||
run test_to_chars.cpp ;
|
run test_to_chars.cpp ;
|
||||||
run test_to_chars_2.cpp ;
|
run test_to_chars_2.cpp ;
|
||||||
@@ -93,9 +91,11 @@ run test_uuid_clock.cpp ;
|
|||||||
|
|
||||||
run test_nil_generator.cpp ;
|
run test_nil_generator.cpp ;
|
||||||
run test_string_generator.cpp ;
|
run test_string_generator.cpp ;
|
||||||
run test_random_generator.cpp ;
|
run test_random_generator.cpp
|
||||||
|
: : : <library>/boost/random//boost_random <library>/boost/predef//boost_predef ;
|
||||||
|
|
||||||
run test_name_generator.cpp ;
|
run test_name_generator.cpp
|
||||||
|
: : : <library>/boost/predef//boost_predef ;
|
||||||
run test_namespaces.cpp ;
|
run test_namespaces.cpp ;
|
||||||
run test_name_generator_md5.cpp ;
|
run test_name_generator_md5.cpp ;
|
||||||
run test_name_generator_sha1.cpp ;
|
run test_name_generator_sha1.cpp ;
|
||||||
@@ -150,7 +150,8 @@ run test_uuid_in_map.cpp ;
|
|||||||
|
|
||||||
# test hashing support
|
# test hashing support
|
||||||
|
|
||||||
run test_hash.cpp ;
|
run test_hash.cpp
|
||||||
|
: : : <library>/boost/container_hash//boost_container_hash ;
|
||||||
run test_hash_value.cpp ;
|
run test_hash_value.cpp ;
|
||||||
|
|
||||||
run test_std_unordered.cpp ;
|
run test_std_unordered.cpp ;
|
||||||
@@ -182,7 +183,8 @@ run test_bench_random.cpp /boost/timer//boost_timer : : : <toolset>clang-cloudab
|
|||||||
# tests for the header-only random provider
|
# tests for the header-only random provider
|
||||||
|
|
||||||
run test_entropy_error.cpp ;
|
run test_entropy_error.cpp ;
|
||||||
run test_detail_random_provider.cpp ;
|
run test_detail_random_provider.cpp
|
||||||
|
: : : <library>/boost/array//boost_array ;
|
||||||
|
|
||||||
# 'quick' test for CI
|
# 'quick' test for CI
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user