remfiles10.at 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Process this file with autom4te to create testsuite. -*- Autotest -*-
  2. # Test suite for GNU tar.
  3. # Copyright 2014-2023 Free Software Foundation, Inc.
  4. #
  5. # GNU tar is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # GNU tar is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. # Check --remove-files with .
  18. AT_SETUP([remove-files])
  19. AT_KEYWORDS([create remove-files remfiles10])
  20. AT_TAR_CHECK([
  21. mkdir foo
  22. echo foo/file > foo/file
  23. decho A
  24. (cd foo && tar -cvf ../foo.tar --remove-files .)
  25. tar_status=$?
  26. decho B
  27. find foo
  28. exit $tar_status
  29. ],
  30. [2],
  31. [A
  32. ./
  33. ./file
  34. B
  35. foo
  36. ],
  37. [stderr],[],[],[gnu])
  38. # Check standard error produced by the above command. Exact errno reported
  39. # when trying to remove CWD may differ, so it is stripped off.
  40. AT_CHECK([sed '2s/:[[^:]]*$//' stderr],
  41. [0],
  42. [A
  43. tar: .: Cannot rmdir
  44. tar: Exiting with failure status due to previous errors
  45. B
  46. ])
  47. AT_CLEANUP