From: Tim Kientzle Date: Mon, 24 Oct 2016 03:10:57 +0000 (-0700) Subject: Clarify some skipping messages X-Git-Tag: v3.2.2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92f9e74c00d6a2946fa2f369e37d84e148b37ef0;p=thirdparty%2Flibarchive.git Clarify some skipping messages --- diff --git a/tar/test/test_option_b.c b/tar/test/test_option_b.c index 81f50be83..7c2f60476 100644 --- a/tar/test/test_option_b.c +++ b/tar/test/test_option_b.c @@ -33,7 +33,7 @@ DEFINE_TEST(test_option_b) assertMakeFile("file1", 0644, "file1"); if (systemf("cat file1 > test_cat.out 2> test_cat.err") != 0) { - skipping("Platform doesn't have cat"); + skipping("This test requires a `cat` program"); return; } testprog_ustar = malloc(strlen(testprog) + sizeof(USTAR_OPT) + 1); diff --git a/tar/test/test_symlink_dir.c b/tar/test/test_symlink_dir.c index f6e99662b..25bd8b162 100644 --- a/tar/test/test_symlink_dir.c +++ b/tar/test/test_symlink_dir.c @@ -63,7 +63,7 @@ DEFINE_TEST(test_symlink_dir) /* "dir2" is a symlink to a non-existing "real_dir2" */ assertMakeSymlink("dest1/dir2", "real_dir2"); } else { - skipping("some symlink checks"); + skipping("Symlinks are not supported on this platform"); } /* "dir3" is a symlink to an existing "non_dir3" */ assertMakeFile("dest1/non_dir3", 0755, "abcdef");