aboutsummaryrefslogtreecommitdiff
path: root/tests/docker/common.rc
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-07-09 13:27:54 +0100
committerAlex Bennée <alex.bennee@linaro.org>2018-07-24 11:45:25 +0100
commit3f9747a73891e50d9c09d2fc3dbba6f1fdd03a13 (patch)
tree60cb3cd074b9d43cafa0e81e3ce39c505d483ba8 /tests/docker/common.rc
parente4ce964d94ee8648c85cbdbe149156d29a4ee53f (diff)
downloadqemu-3f9747a73891e50d9c09d2fc3dbba6f1fdd03a13.zip
qemu-3f9747a73891e50d9c09d2fc3dbba6f1fdd03a13.tar.gz
qemu-3f9747a73891e50d9c09d2fc3dbba6f1fdd03a13.tar.bz2
docker: move make check into check_qemu helper
Not all docker images can run the check step. Let's move everything into a common helper so we don't need to replicate checks in the future. 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>
Diffstat (limited to 'tests/docker/common.rc')
-rwxr-xr-xtests/docker/common.rc11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/docker/common.rc b/tests/docker/common.rc
index ba1f942..4ff5974 100755
--- a/tests/docker/common.rc
+++ b/tests/docker/common.rc
@@ -40,6 +40,17 @@ build_qemu()
make $MAKEFLAGS
}
+check_qemu()
+{
+ # default to make check unless the caller specifies
+ if test -z "$@"; then
+ INVOCATION="check"
+ else
+ INVOCATION="$@"
+ fi
+ make $MAKEFLAGS $INVOCATION
+}
+
test_fail()
{
echo "$@"