diff options
author | Kevin Wolf <kwolf@redhat.com> | 2012-03-09 13:37:40 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-03-12 15:14:07 +0100 |
commit | b8c6f29eb84cd3ccbbf23a5951224ae33f11116b (patch) | |
tree | c82f49399e27bd9b1e60005508ae80cd583be2eb /tests/Makefile | |
parent | 8959449bb9b16e3b19cf35823d3358eb7d461210 (diff) |
Add 'make check-block'
Runs the full qemu-iotests suite for various image formats.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 571ad42896..c78ade122e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -47,6 +47,11 @@ test-qmp-commands: test-qmp-commands.o $(qobject-obj-y) $(qapi-obj-y) $(tools-ob $(SRC_PATH)/tests/qemu-iotests-quick.sh: qemu-img qemu-io -.PHONY: check + +.PHONY: check check-block + check: $(CHECKS) $(call quiet-command, gtester $(CHECKS), " CHECK") + +check-block: + $(call quiet-command, $(SHELL) $(SRC_PATH)/tests/check-block.sh , " CHECK") |