diff options
author | Martin Matuska <martin@matuska.org> | 2016-09-25 02:03:23 +0200 |
---|---|---|
committer | Martin Matuska <martin@matuska.org> | 2016-09-25 02:03:23 +0200 |
commit | 75de4e4a21d3564f1255681695672840792cb52b (patch) | |
tree | 2631493f4c30fd913de3d20cd55c703ab6cc50ae /libarchive | |
parent | c411e0b8f90ca767b1ca3c027bea4ed3bd095193 (diff) | |
download | libarchive-75de4e4a21d3564f1255681695672840792cb52b.tar.gz |
"bunzip2 -V" does not exit with 0, use "bunzip2 -h" instead
Diffstat (limited to 'libarchive')
-rw-r--r-- | libarchive/test/test_read_set_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive/test/test_read_set_format.c b/libarchive/test/test_read_set_format.c index 9208833e..f9be9783 100644 --- a/libarchive/test/test_read_set_format.c +++ b/libarchive/test/test_read_set_format.c @@ -204,7 +204,7 @@ DEFINE_TEST(test_read_append_filter_wrong_program) /* * If we have "bunzip2 -q", try using that. */ - if (!canRunCommand("bunzip2 -V")) { + if (!canRunCommand("bunzip2 -h")) { skipping("Can't run bunzip2 program on this platform"); return; } |