mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
- travis with valgrind, cppcheck, ubsan, codecov, covscan (future) - appveyor with MSVC 2010 through 2017, cygwin 32/64, mingw 32/64 - README, LICENSE, etc.
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
#
|
|
# Copyright Vladimir Prus 2004
|
|
#
|
|
# Distributed under 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)
|
|
#
|
|
|
|
import os ;
|
|
|
|
test-suite dynamic_bitset :
|
|
|
|
[ run dyn_bitset_unit_tests1.cpp : : : <library>/boost/system//boost_system ]
|
|
[ run dyn_bitset_unit_tests2.cpp : : : <library>/boost/system//boost_system ]
|
|
[ run dyn_bitset_unit_tests3.cpp : : : <library>/boost/system//boost_system ]
|
|
[ run dyn_bitset_unit_tests4.cpp : : : <library>/boost/filesystem//boost_filesystem
|
|
<library>/boost/system//boost_system ]
|
|
;
|
|
|
|
# due to https://github.com/boostorg/serialization/issues/108
|
|
if ! [ os.environ UBSAN_OPTIONS ]
|
|
{
|
|
test-suite dynamic_bitset_serialization :
|
|
|
|
[ run dyn_bitset_unit_tests5.cpp
|
|
: : : <define>_SCL_SECURE_NO_WARNINGS=1
|
|
<library>/boost/serialization//boost_serialization
|
|
<library>/boost/system//boost_system ]
|
|
;
|
|
}
|