]> git.proxmox.com Git - pve-storage.git/blame - test/run_plugin_tests.pl
test: parse_volname
[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 });
c48801b5 9my $res = $harness->runtests("archive_info_test.pm", "parse_volname_test.pm");
cd554b79
AA
10
11exit -1 if !$res || $res->{failed} || $res->{parse_errors};
12