docker: gracefully skip check_qemu
Not all our images are able to run the tests. Rather than use features we can just check for the existence and run-ability of gtester. If the image has been setup for binfmt_misc it will be able to run anyway. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
3f9747a738
commit
56c115a953
@ -48,7 +48,13 @@ check_qemu()
|
|||||||
else
|
else
|
||||||
INVOCATION="$@"
|
INVOCATION="$@"
|
||||||
fi
|
fi
|
||||||
make $MAKEFLAGS $INVOCATION
|
|
||||||
|
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
|
||||||
}
|
}
|
||||||
|
|
||||||
test_fail()
|
test_fail()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user