Jamfile 686 B

123456789101112131415161718192021222324
  1. # Copyright 2014-2015 Glen Joseph Fernandes
  2. # (glenjofe@gmail.com)
  3. #
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (http://www.boost.org/LICENSE_1_0.txt)
  6. import testing ;
  7. run align_test.cpp ;
  8. run align_down_test.cpp ;
  9. run align_down_integral_test.cpp ;
  10. run align_up_test.cpp ;
  11. run align_up_integral_test.cpp ;
  12. run aligned_alloc_test.cpp ;
  13. run aligned_allocator_test.cpp ;
  14. run aligned_allocator_adaptor_test.cpp ;
  15. run aligned_delete_test.cpp ;
  16. run alignment_of_test.cpp ;
  17. run assume_aligned_test.cpp ;
  18. run is_aligned_test.cpp ;
  19. run is_aligned_integral_test.cpp ;
  20. compile aligned_allocator_incomplete_test.cpp ;
  21. compile aligned_allocator_adaptor_incomplete_test.cpp ;