difflink.at 1006 B

1234567891011121314151617181920212223242526272829303132333435
  1. # This file is part of GNU tar test suite -*- Autotest -*-
  2. #
  3. # Copyright 2017-2023 Free Software Foundation, Inc.
  4. #
  5. # This program 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, or (at your option)
  8. # any later version.
  9. #
  10. # This program 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. AT_SETUP([link mismatch])
  18. AT_KEYWORDS([diff difflink])
  19. AT_TAR_CHECK([
  20. mkdir a
  21. genfile -f a/x
  22. ln -s x a/y
  23. ln a/x a/z
  24. tar cf a.tar a/x a/y a/z
  25. rm a/z
  26. ln -s x a/z
  27. tar df a.tar
  28. ],
  29. [1],
  30. [a/z: Not linked to a/x
  31. ],
  32. [],
  33. [],[],[ustar]) # Testing one format is enough
  34. AT_CLEANUP