1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- AT_SETUP([tar cvf -])
- AT_KEYWORDS([stdout verbose])
- AT_TAR_CHECK([
- genfile --file file --length 10240
- echo Creating the archive
- tar cvf - file > archive
- echo Testing the archive
- tar tf archive
- ],
- [0],
- [Creating the archive
- Testing the archive
- file
- ],
- [file
- ])
- AT_CLEANUP
|