123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- AT_SETUP([incremental])
- AT_KEYWORDS([incremental incr00])
- AT_TAR_CHECK([
- mkdir structure
- echo x >structure/file
- ls -l structure/file >/dev/null
- sleep 1
- tar cf archive --listed=list structure
- tar cfv archive --listed=list structure
- echo separator
- sleep 2
- echo y >structure/file
- tar cfv archive --listed=list structure
- ],
- [0],
- [
- structure/
- separator
- structure/
- structure/file
- ],
- [],[],[],[gnu,oldgnu,posix])
- AT_CLEANUP
|