multiv03.sh 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #! /bin/sh
  2. # This file is part of GNU tar testsuite.
  3. # Copyright (C) 2004 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 2, 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, write to the Free Software
  17. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  18. # 02111-1307, USA.
  19. # Problem: GNU multivolume archives are not able to continue on members
  20. # with filenames longer than 100 characters. Versions of tar <= 1.14
  21. # were not checking filename lengths and produced malformed multivolume
  22. # headers.
  23. # References: <[email protected]>
  24. # http://lists.gnu.org/archive/html/bug-tar/2004-08/msg00012.html
  25. . ./preset
  26. TAR_ARCHIVE_FORMATS="gnu oldgnu"
  27. . $srcdir/before
  28. AFILE=`awk 'BEGIN { for (i = 0; i < 100; i++) printf "a"; exit; }'`
  29. BFILE=`awk 'BEGIN { for (i = 0; i < 101; i++) printf "b"; exit; }'`
  30. genfile --length 15360 > $AFILE
  31. tar -M -L 10 -c -f arch.1 -f arch.2 $AFILE
  32. tar -tM -f arch.1 -f arch.2
  33. echo separator
  34. genfile --length 15360 > $BFILE
  35. tar -M -L 10 -c -f arch.1 -f arch.2 $BFILE
  36. out="\
  37. $AFILE
  38. separator
  39. "
  40. err="\
  41. tar: $BFILE: file name too long to be stored in a GNU multivolume header
  42. tar: Error is not recoverable: exiting now
  43. "
  44. . $srcdir/after