ii-0053-test 812 B

12345678910111213141516171819202122232425
  1. #!/bin/sh -x
  2. # This file is free software; as a special exception the author gives
  3. # unlimited permission to copy and/or distribute it, with or without
  4. # modifications, as long as this notice is preserved.
  5. #
  6. # This program is distributed in the hope that it will be useful, but
  7. # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. . ./defs || exit 1
  10. outputdirfile=`mktemp ii53-XXXXXXXX`
  11. cp ${testdir}/ii-0053-input-dir-file $outputdirfile
  12. test $? = 0 || exit 1
  13. # Test for handling newlines in input dir entries, too.
  14. ${install_info} ${testdir}/ii-0053-input-info-file $outputdirfile
  15. test $? = 0 || exit 2
  16. diff ${testdir}/ii-0053-expected-dir-file $outputdirfile
  17. test $? = 0 || exit 3
  18. rm -f $outputdirfile
  19. exit 0