1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- AT_SETUP([--exclude-tag-under and --listed-incremental])
- AT_KEYWORDS([exclude exclude-tag exclude-tag-under listed incremental exclude12])
- AT_TAR_CHECK([
- AT_SORT_PREREQ
- mkexcltest etest
- tar -c -f etest.tar --exclude-tag-under=excludeme --listed=snar -v etest | sort
- ],
- [0],
- [etest/
- etest/subdir/
- etest/top-level-file
- ],
- [tar: etest: Directory is new
- tar: etest/subdir: Directory is new
- tar: etest/subdir: contains a cache directory tag excludeme; contents not dumped
- ],[],[],[gnu])
- AT_CLEANUP
|