mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-07-09 03:31:02 +00:00

To have a better safety net for not introducing regressions and also some functional checks as the QEMU command defines the layout behavior of the VM. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com> Acked-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
14 lines
306 B
Makefile
14 lines
306 B
Makefile
all: test
|
|
|
|
test: test_snapshot test_ovf test_cfg_to_cmd
|
|
|
|
test_snapshot: run_snapshot_tests.pl
|
|
./run_snapshot_tests.pl
|
|
./test_get_replicatable_volumes.pl
|
|
|
|
test_ovf: run_ovf_tests.pl
|
|
./run_ovf_tests.pl
|
|
|
|
test_cfg_to_cmd: run_config2command_tests.pl cfg2cmd/*.conf
|
|
perl -I../ ./run_config2command_tests.pl
|