runtest.sh 792 B

12345678910111213141516171819202122232425
  1. #==============================================================================
  2. # Copyright (c) 2002 Joel de Guzman
  3. # http://spirit.sourceforge.net/
  4. #
  5. # Use, modification and distribution is subject to the Boost Software
  6. # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. #==============================================================================
  9. #!/bin/sh
  10. #./test1 << EOS || exit 1
  11. #123321
  12. #EOS
  13. ./binary_tests || exit 1
  14. ./binders_tests || exit 1
  15. ./functors_tests || exit 1
  16. ./iostream_tests << EOS || exit 1
  17. 123321
  18. EOS
  19. ./mixed_binary_tests || exit 1
  20. ./more_expressions_tests || exit 1
  21. ./primitives_tests || exit 1
  22. ./statements_tests || exit 1
  23. ./stl_tests || exit 1
  24. ./tuples_tests || exit 1
  25. ./unary_tests || exit 1