mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-05-05 20:44:36 +00:00

these are modelled after the existing snapshot tests for LXC and should serve as a baseline for refactoring the Qemu snapshot code using PVE::AbstractConfig
11 lines
198 B
Perl
Executable File
11 lines
198 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use TAP::Harness;
|
|
|
|
my $harness = TAP::Harness->new( { "verbosity" => -2 });
|
|
$harness->runtests( "snapshot-test.pm");
|
|
system( "rm -rf snapshot-working/");
|