# Copyright 2006-2007 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/unordered : requirements intel-linux:"-strict_ansi -cxxlib-icc" ; test-suite unordered-tests : [ run equivalent_keys_tests.cpp ] [ run compile_tests.cpp ] [ run constructor_tests.cpp ] [ run copy_tests.cpp ] [ run assign_tests.cpp ] [ run insert_tests.cpp ] [ run insert_stable_tests.cpp ] [ run unnecessary_copy_tests.cpp ] [ run erase_tests.cpp ] [ run erase_equiv_tests.cpp ] [ run find_tests.cpp ] [ run bucket_tests.cpp ] [ run load_factor_tests.cpp ] [ run rehash_tests.cpp ] [ run swap_tests.cpp : : : BOOST_UNORDERED_SWAP_METHOD=3 ] ;