mirror of
https://github.com/boostorg/unordered.git
synced 2025-10-27 13:51:46 +01:00
22 lines
591 B
Plaintext
22 lines
591 B
Plaintext
|
|
# Copyright 2005 Daniel James.
|
|
# 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 testing ;
|
|
|
|
project unordered-test/container
|
|
: requirements
|
|
<toolset>intel-linux:"<cxxflags>-strict_ansi -cxxlib-icc"
|
|
<toolset>gcc:<cxxflags>-Wsign-promo
|
|
<toolset>msvc:<cxxflags>/W4
|
|
;
|
|
|
|
test-suite container-tests
|
|
:
|
|
[ run set_compile.cpp ]
|
|
[ run map_compile.cpp ]
|
|
[ run simple_tests.cpp ]
|
|
[ run link_test_1.cpp link_test_2.cpp ]
|
|
;
|