options03.at 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Process this file with autom4te to create testsuite. -*- Autotest -*-
  2. #
  3. # Test suite for GNU tar.
  4. # Copyright 2016-2023 Free Software Foundation, Inc.
  5. #
  6. # This file is part of GNU tar.
  7. #
  8. # GNU tar is free software; you can redistribute it and/or modify
  9. # it under the terms of the GNU General Public License as published by
  10. # the Free Software Foundation; either version 3 of the License, or
  11. # (at your option) any later version.
  12. #
  13. # GNU tar is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. AT_SETUP([TAR_OPTIONS with string arguments])
  21. AT_KEYWORDS([options options03])
  22. # Check whether string values are passed correctly through the
  23. # TAR_OPTIONS environment variable. In tar 1.29 the stored values
  24. # were inadvertenlty freedm which caused TAR_OPTION to malfunction.
  25. # Reported by: Jan Larres <[email protected]>
  26. # References: <[email protected]>,
  27. # http://lists.gnu.org/archive/html/bug-tar/2016-09/msg00005.html
  28. AT_CHECK([
  29. echo dir/bar > exclude.list
  30. mkdir dir
  31. genfile --file=dir/foo
  32. genfile --file=dir/bar
  33. TAR_OPTIONS=--exclude-from=exclude.list tar cf arc.tar dir
  34. tar tf arc.tar
  35. ],
  36. [0],
  37. [dir/
  38. dir/foo
  39. ])
  40. AT_CLEANUP