test_all_main.cpp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* Boost.MultiIndex test suite.
  2. *
  3. * Copyright 2003-2018 Joaquin M Lopez Munoz.
  4. * Distributed under the Boost Software License, Version 1.0.
  5. * (See accompanying file LICENSE_1_0.txt or copy at
  6. * http://www.boost.org/LICENSE_1_0.txt)
  7. *
  8. * See http://www.boost.org/libs/multi_index for library home page.
  9. */
  10. #include <boost/detail/lightweight_test.hpp>
  11. #include "test_basic.hpp"
  12. #include "test_capacity.hpp"
  13. #include "test_comparison.hpp"
  14. #include "test_composite_key.hpp"
  15. #include "test_conv_iterators.hpp"
  16. #include "test_copy_assignment.hpp"
  17. #include "test_hash_ops.hpp"
  18. #include "test_iterators.hpp"
  19. #include "test_key.hpp"
  20. #include "test_key_extractors.hpp"
  21. #include "test_list_ops.hpp"
  22. #include "test_modifiers.hpp"
  23. #include "test_mpl_ops.hpp"
  24. #include "test_observers.hpp"
  25. #include "test_projection.hpp"
  26. #include "test_range.hpp"
  27. #include "test_rank_ops.hpp"
  28. #include "test_rearrange.hpp"
  29. #include "test_safe_mode.hpp"
  30. #include "test_serialization.hpp"
  31. #include "test_set_ops.hpp"
  32. #include "test_special_set_ops.hpp"
  33. #include "test_update.hpp"
  34. int main()
  35. {
  36. test_basic();
  37. test_capacity();
  38. test_comparison();
  39. test_composite_key();
  40. test_conv_iterators();
  41. test_copy_assignment();
  42. test_hash_ops();
  43. test_iterators();
  44. test_key();
  45. test_key_extractors();
  46. test_list_ops();
  47. test_modifiers();
  48. test_mpl_ops();
  49. test_observers();
  50. test_projection();
  51. test_range();
  52. test_rank_ops();
  53. test_rearrange();
  54. test_safe_mode();
  55. test_serialization();
  56. test_set_ops();
  57. test_special_set_ops();
  58. test_update();
  59. return boost::report_errors();
  60. }