]> git.proxmox.com Git - qemu-server.git/blobdiff - test/Makefile
remove left-over mentions of to-be-dropped, outdated QMP commands
[qemu-server.git] / test / Makefile
index 7a8487c5bd4ca36c29c91fb18493e93692f41d10..9e6d39e81e8aa5a5ba88ce8d6b1b5991cbdd96c9 100644 (file)
@@ -1,6 +1,3 @@
-MIGRATION_TEST_NAMES := $(shell ./run_qemu_migrate_tests.pl DUMP_NAMES)
-MIGRATION_TEST_TARGETS := $(addprefix test_migration_,$(MIGRATION_TEST_NAMES))
-
 all: test
 
 test: test_snapshot test_ovf test_cfg_to_cmd test_pci_addr_conflicts test_qemu_img_convert test_migration test_restore_config
@@ -21,6 +18,8 @@ test_qemu_img_convert: run_qemu_img_convert_tests.pl
 test_pci_addr_conflicts: run_pci_addr_checks.pl
        ./run_pci_addr_checks.pl
 
+MIGRATION_TEST_TARGETS := $(addprefix test_migration_,$(shell perl -ne 'print "$$1 " if /^\s*name\s*=>\s*["'\'']([^\s"'\'']+)["'\'']\s*,\s*$$/; END { print "\n" }' run_qemu_migrate_tests.pl))
+
 test_migration: run_qemu_migrate_tests.pl MigrationTest/*.pm $(MIGRATION_TEST_TARGETS)
 
 $(MIGRATION_TEST_TARGETS):