missing3.sh 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #! /bin/sh
  2. # Copyright (C) 2004-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Test missing when running a tool's --version.
  17. am_create_testdir=empty
  18. . test-init.sh
  19. get_shell_script missing
  20. # b7cb8259 assumed not to exist.
  21. run_cmd ()
  22. {
  23. st=0; "$@" >stdout 2>stderr || st=$?
  24. cat stdout
  25. cat stderr >&2
  26. return $st
  27. }
  28. run_cmd ./missing b7cb8259 --version && exit 1
  29. grep WARNING stderr && exit 1
  30. run_cmd ./missing b7cb8259 --grep && exit 1
  31. if test x"$am_test_prefer_config_shell" != x"yes"; then
  32. # The /bin/sh from Solaris 10 is a spectacular failure. After a failure
  33. # due to a "command not found", it sets '$?' to '1'.
  34. if (st=0; /bin/sh -c 'no--such--command' || st=$?; test $st -eq 127); then
  35. grep 'WARNING:.*missing on your system' stderr
  36. fi
  37. fi
  38. # missing itself it known to exist :)
  39. run_cmd ./missing ./missing --version || exit 1
  40. grep 'missing .*(GNU [aA]utomake)' stdout
  41. test -s stderr && exit 1
  42. run_cmd ./missing ./missing --grep && exit 1
  43. grep WARNING stderr && exit 1
  44. grep "missing:.* unknown '--grep'" stderr
  45. :