mirror of
git://git.proxmox.com/git/qemu-server.git
synced 2025-01-22 22:03:55 +03:00
a157d0fd17
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/");
|