From 7ff5c1fa27c6c7a14089c786e73f2b8dc1423e62 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Wed, 18 Dec 2019 02:30:11 +0100 Subject: [PATCH] docker: gtester is no longer used MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We are using tap-driver.pl, do not require anymore gtester to be installed to run the testsuite in docker-based tests. Signed-off-by: Paolo Bonzini Reviewed-by: Thomas Huth Signed-off-by: Alex Bennée Message-Id: <1576632611-55032-1-git-send-email-pbonzini@redhat.com> --- tests/docker/common.rc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/docker/common.rc b/tests/docker/common.rc index 512202b0a1..02cd67a8c5 100755 --- a/tests/docker/common.rc +++ b/tests/docker/common.rc @@ -53,12 +53,7 @@ check_qemu() INVOCATION="$@" fi - if command -v gtester > /dev/null 2>&1 && \ - gtester --version > /dev/null 2>&1; then - make $MAKEFLAGS $INVOCATION - else - echo "No working gtester, skipping make $INVOCATION" - fi + make $MAKEFLAGS $INVOCATION } test_fail()