xattr01.at 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Process this file with autom4te to create testsuite. -*- Autotest -*-
  2. #
  3. # Test suite for GNU tar.
  4. # Copyright (C) 2011 Free Software Foundation, Inc.
  5. #
  6. # This program 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, or (at your option)
  9. # any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. # Test description:
  20. #
  21. # This is basic test for support of extended attributes.
  22. AT_SETUP([xattrs: basic functionality])
  23. AT_KEYWORDS([xattrs xattr01])
  24. AT_TAR_CHECK([
  25. AT_XATTRS_PREREQ
  26. mkdir dir
  27. genfile --file dir/file
  28. setfattr -n user.test -v OurDirValue dir
  29. setfattr -n user.test -v OurFileValue dir/file
  30. tar --xattrs -cf archive.tar dir
  31. rm -rf dir
  32. tar --xattrs -xf archive.tar
  33. getfattr -h -d dir | grep -v -e '^#' -e ^$
  34. getfattr -h -d dir/file | grep -v -e '^#' -e ^$
  35. ],
  36. [0],
  37. [user.test="OurDirValue"
  38. user.test="OurFileValue"
  39. ])
  40. AT_CLEANUP