123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- AT_SETUP([files-from: 0-separated file without -0])
- AT_KEYWORDS([files-from null T-null])
- AT_DATA([expout],[jeden\ndwa
- trzy
- ])
- AT_TAR_CHECK([
- AT_SORT_PREREQ
- echo dwa > temp
- echo trzy >> temp
- cat temp | tr '\n' '\0' > temp1
- echo jeden > file-list
- cat temp1 >> file-list
- genfile -f "jeden
- dwa" || AT_SKIP_TEST
- genfile -f trzy
- tar cfTv archive file-list | sort
- ],
- [0],
- [expout],
- [tar: file-list: file name read contains nul character
- ],[],[],[ustar])
- AT_CLEANUP
|