summaryrefslogtreecommitdiffstats
path: root/usr.bin/cpio/test/test_basic.c
diff options
context:
space:
mode:
authorkientzle <kientzle@FreeBSD.org>2008-08-22 02:27:06 +0000
committerkientzle <kientzle@FreeBSD.org>2008-08-22 02:27:06 +0000
commit23c403cbda90ba592397f8837ed4d31d8c6560e1 (patch)
tree5440d07f412f8add150b86b232025b597225e655 /usr.bin/cpio/test/test_basic.c
parent2a48176eba96caaa3a31b0d353942f75bb2fbd49 (diff)
downloadFreeBSD-src-23c403cbda90ba592397f8837ed4d31d8c6560e1.zip
FreeBSD-src-23c403cbda90ba592397f8837ed4d31d8c6560e1.tar.gz
Comment a couple of places where bsdcpio and gcpio 2.9 disagree.
The number of blocks read from ustar archives is just an implementation difference. The failure of bsdcpio to emit a block count to stderr in -p mode is a real bug in bsdcpio.
Diffstat (limited to 'usr.bin/cpio/test/test_basic.c')
-rw-r--r--usr.bin/cpio/test/test_basic.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/usr.bin/cpio/test/test_basic.c b/usr.bin/cpio/test/test_basic.c
index 7f1fe6d..67381ce 100644
--- a/usr.bin/cpio/test/test_basic.c
+++ b/usr.bin/cpio/test/test_basic.c
@@ -141,7 +141,7 @@ passthrough(const char *target)
/*
* Use cpio passthrough mode to copy files to another directory.
*/
- r = systemf("%s -p -W quiet %s <filelist >%s/stdout 2>%s/stderr",
+ r = systemf("%s -p %s <filelist >%s/stdout 2>%s/stderr",
testprog, target, target, target);
failure("Error invoking %s -p", testprog);
assertEqualInt(r, 0);
@@ -151,7 +151,10 @@ passthrough(const char *target)
/* Verify stderr. */
failure("Error invoking %s -p in dir %s",
testprog, target);
- assertEmptyFile("stderr");
+ /* gcpio 2.9 writes "1 block" to stderr */
+ /* assertFileContents("1 block\n", 8, "stderr"); */
+ /* bsdcpio writes nothing to stderr for passthrough mode */
+ assertFileContents("", 0, "stderr");
verify_files(target);
chdir("..");
@@ -196,6 +199,8 @@ DEFINE_TEST(test_basic)
basic_cpio("copy_odc", "--format=odc", "", "1 block\n");
basic_cpio("copy_newc", "-H newc", "", "2 blocks\n");
basic_cpio("copy_cpio", "-H odc", "", "1 block\n");
+ /* For some reason, gcpio 2.9 writes 7 blocks but only reads 6? */
+ /* bsdcpio writes 7 blocks and reads 7 blocks. */
basic_cpio("copy_ustar", "-H ustar", "", "7 blocks\n");
/* Copy in one step using -p */
passthrough("passthrough");
OpenPOWER on IntegriCloud