4
0

sparse05.at 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Process this file with autom4te to create testsuite. -*- Autotest -*-
  2. #
  3. # Test suite for GNU tar.
  4. # Copyright 2014, 2016 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])
  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. (echo 0 =2560
  26. for i in `seq 1 999`; do
  27. echo 10M =2560
  28. done) | genfile --sparse --file BIGFILE --block-size 4K - || AT_SKIP_TEST
  29. tar -f - -c --sparse --posix BIGFILE | tar tvf - | awk '{ print $3, $(NF) }'
  30. ],
  31. [0],
  32. [20961034240 BIGFILE
  33. ],
  34. [],
  35. [],
  36. [],
  37. [pax])
  38. AT_CLEANUP