]> git.proxmox.com Git - pve-storage.git/blob - test/run_plugin_tests.pl
test: path_to_volume_id
[pve-storage.git] / test / run_plugin_tests.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use TAP::Harness;
7
8 my $harness = TAP::Harness->new( { verbosity => -1 });
9 my $res = $harness->runtests(
10 "archive_info_test.pm",
11 "parse_volname_test.pm",
12 "list_volumes_test.pm",
13 "path_to_volume_id_test.pm",
14 );
15
16 exit -1 if !$res || $res->{failed} || $res->{parse_errors};