X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=tests%2Ftruncate.at;h=d3e38107ac91284de4f6dca10c256f9aefe3a803;hb=2504e7d3ae123079e7883b8c23175b1a26a5e077;hp=190d7349cc86af86e19e5a5b9e5888a22fb6f7fd;hpb=c9365a1d09ec81c8df63f735301a1c5f7cc107c8;p=chaz%2Ftar diff --git a/tests/truncate.at b/tests/truncate.at index 190d734..d3e3810 100644 --- a/tests/truncate.at +++ b/tests/truncate.at @@ -15,8 +15,8 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. # Tar 1.15.1 incorrectly padded archive members that were truncated during # archiving. @@ -24,14 +24,16 @@ # http://lists.gnu.org/archive/html/bug-tar/2005-05/msg00008.html # # The test case is based on the script by Frank Heckenbach +# Additionally, the test verifies if tar exits with code 1 (file differs). AT_SETUP([truncate]) -AT_KEYWORDS([truncated files]) +AT_KEYWORDS([truncate filechange]) AT_TAR_CHECK([ genfile --file foo --length 50000k genfile --file baz genfile --run 'tar -vcf bar foo baz' --checkpoint 10 --length 49995k --truncate foo +echo Exit status: $? echo separator sleep 1 dd if=/dev/zero of=foo bs=1k seek=49995 count=5 >/dev/null 2>&1 @@ -39,15 +41,13 @@ tar dvf bar], [1], [foo baz +Exit status: 1 separator foo foo: Mod time differs baz ], [tar: foo: File shrank by 5120 bytes; padding with zeros -tar: Error exit delayed from previous errors ]) AT_CLEANUP - -