]> git.proxmox.com Git - pve-storage.git/blame - test/run_plugin_tests.pl
Fix: backup: ctime was from stat not file name
[pve-storage.git] / test / run_plugin_tests.pl
CommitLineData
cd554b79
AA
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use TAP::Harness;
7
8my $harness = TAP::Harness->new( { verbosity => -1 });
6a27e817
AA
9my $res = $harness->runtests(
10 "archive_info_test.pm",
11 "parse_volname_test.pm",
12 "list_volumes_test.pm",
13);
cd554b79
AA
14
15exit -1 if !$res || $res->{failed} || $res->{parse_errors};
16