From: Tim Kientzle Date: Thu, 24 Sep 2009 15:01:33 +0000 (-0400) Subject: More detail on failure. X-Git-Tag: v2.8.0~346 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01fd4d71399f25d3726d34f6e56fc620f22e3b0b;p=thirdparty%2Flibarchive.git More detail on failure. SVN-Revision: 1462 --- diff --git a/cpio/test/test_gcpio_compat.c b/cpio/test/test_gcpio_compat.c index 1e1e594bd..461e427c2 100644 --- a/cpio/test/test_gcpio_compat.c +++ b/cpio/test/test_gcpio_compat.c @@ -57,11 +57,17 @@ unpack_test(const char *from, const char *options, const char *se) /* Regular file with 2 links. */ assertIsReg("file", 0644); + failure("%s", from); assertFileSize("file", 10); + assertFileSize("linkfile", 10); + failure("%s", from); assertFileNLinks("file", 2); /* Another name for the same file. */ + failure("%s", from); assertIsHardlink("linkfile", "file"); + assertFileSize("file", 10); + assertFileSize("linkfile", 10); /* Symlink */ if (canSymlink())