remfiles05a.at 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Process this file with autom4te to create testsuite. -*- Autotest -*-
  2. # Test suite for GNU tar.
  3. # Copyright 2013-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. # Description: ensure tar correctly respects -C option when deleting
  18. # files due to the --remove-files option.
  19. #
  20. # This case checks the use of two relative-path -C options,
  21. # in --create/non-incremental mode.
  22. #
  23. # (This specific case failed during development of tar 1.26.90:
  24. # There was a leftover call to chdir in name_next_elt() in
  25. # tar 1.26. After commit e3d28d84 this call would confuse the
  26. # tar_getcwd function.
  27. #
  28. # Reported by: Nathan Stratton Treadway <[email protected]>
  29. # References: <[email protected]>,
  30. # http://lists.gnu.org/archive/html/bug-tar/2013-09/msg00045.html
  31. # )
  32. AT_SETUP([remove-files with -C:rel,rel in -c/non-incr. mode])
  33. AT_KEYWORDS([create remove-files remfiles05 remfiles05a chdir])
  34. AT_TAR_CHECK([
  35. AT_SORT_PREREQ
  36. mkdir foo
  37. mkdir bar
  38. echo file > file
  39. echo foo/file > foo/file
  40. echo bar/file > bar/file
  41. decho A
  42. tar -cvf foo.tar --remove-files -C foo file -C ../bar file
  43. decho B
  44. find . | sort
  45. ],
  46. [0],
  47. [A
  48. file
  49. file
  50. B
  51. .
  52. ./bar
  53. ./file
  54. ./foo
  55. ./foo.tar
  56. ],
  57. [A
  58. B
  59. ],[],[],[gnu])
  60. AT_CLEANUP