From 92f9e74c00d6a2946fa2f369e37d84e148b37ef0 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sun, 23 Oct 2016 20:10:57 -0700 Subject: [PATCH] Clarify some skipping messages --- tar/test/test_option_b.c | 2 +- tar/test/test_symlink_dir.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.47.2