From: Ben Crocker bcrocker@redhat.com
Using 'test -x' instead of 'dnf list installed' to test for the presence of rpminspect, don't need to redirect stdout/stderr.
Signed-off-by: Ben Crocker bcrocker@redhat.com --- redhat/self-test/1003-rpminspect.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/redhat/self-test/1003-rpminspect.bats b/redhat/self-test/1003-rpminspect.bats index 3dcf7f1ecc78..58ec8f9665cd 100644 --- a/redhat/self-test/1003-rpminspect.bats +++ b/redhat/self-test/1003-rpminspect.bats @@ -5,7 +5,7 @@ }
@test "rpminspect" { - if ! test -x /usr/bin/rpminspect >& /dev/null + if ! test -x /usr/bin/rpminspect then skip "The rpminspect package is not installed" fi