Files
endian/test/Jamfile.v2
2019-01-06 20:32:19 +02:00

30 lines
817 B
Plaintext

# Boost Endian Library test Jamfile
# Copyright Beman Dawes 2006, 2013
# Copyright 2018 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# See http://www.boost.org/LICENSE_1_0.txt
# See library home page at http://www.boost.org/libs/endian
import testing ;
run buffer_test.cpp ;
run buffer_test.cpp : : : <define>BOOST_ENDIAN_NO_INTRINSICS : buffer_test_ni ;
run endian_test.cpp ;
run endian_test.cpp : : : <define>BOOST_ENDIAN_NO_INTRINSICS : endian_test_ni ;
run endian_operations_test.cpp ;
run endian_operations_test.cpp : : : <define>BOOST_ENDIAN_NO_INTRINSICS : endian_operations_test_ni ;
run endian_in_union_test.cpp ;
run conversion_test.cpp ;
run conversion_test.cpp : : : <define>BOOST_ENDIAN_NO_INTRINSICS : conversion_test_ni ;
run intrinsic_test.cpp ;
run quick.cpp ;