1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- AT_SETUP([incremental])
- AT_KEYWORDS([incremental listed incr00])
- AT_TAR_CHECK([
- AT_CHECK_TIMESTAMP
- 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
|