]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Clarify some skipping messages
authorTim Kientzle <kientzle@acm.org>
Mon, 24 Oct 2016 03:10:57 +0000 (20:10 -0700)
committerTim Kientzle <kientzle@acm.org>
Mon, 24 Oct 2016 03:10:57 +0000 (20:10 -0700)
tar/test/test_option_b.c
tar/test/test_symlink_dir.c

index 81f50be8355eb29f5ddc909e6e2ac9e38e96f55f..7c2f60476c5599ec643fb5e60d4a14535d1e560a 100644 (file)
@@ -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);
index f6e99662bf110d5a95ccd582c1e737e34771c0a3..25bd8b162a161097ee68bd76815fbbc1d60e4394 100644 (file)
@@ -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");