sparse05.at 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Process this file with autom4te to create testsuite. -*- Autotest -*-
  2. #
  3. # Test suite for GNU tar.
  4. # Copyright 2014-2023 Free Software Foundation, Inc.
  5. # This file is part of GNU tar.
  6. # GNU tar is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 3 of the License, or
  9. # (at your option) any later version.
  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. # 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. AT_SETUP([listing sparse files bigger than 2^33 B])
  17. AT_KEYWORDS([sparse sparse05 largefile])
  18. # Description: If an archive in POSIX.1-2001 archive contained a sparse file
  19. # member whose real size (excluding zero blocks) is bigger than 2^33 bytes,
  20. # tar 1.28 would incorrectly list the real member size.
  21. # Reported by: Pavel Raiskup <[email protected]>
  22. # References: <1359119879.15037.4.camel@raiskup>,
  23. # http://lists.gnu.org/archive/html/bug-tar/2013-01/msg00001.html
  24. AT_TAR_CHECK([
  25. AT_SKIP_LARGE_FILES
  26. AT_DATA([mapfile],
  27. [0 =2560
  28. m4_for([i], 1, 999, 1, [10M =2560
  29. ])])
  30. genfile --sparse --file BIGFILE --block-size 4K - < mapfile || AT_SKIP_TEST
  31. tar -f - -c --sparse --posix BIGFILE | tar tvf - | awk '{ print $3, $(NF) }'
  32. ],
  33. [0],
  34. [20961034240 BIGFILE
  35. ],
  36. [],
  37. [],
  38. [],
  39. [pax])
  40. AT_CLEANUP