mirror of
git://git.proxmox.com/git/pve-storage.git
synced 2025-02-26 21:57:31 +03:00
11 lines
161 B
Perl
11 lines
161 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use TAP::Harness;
|
||
|
|
||
|
my $harness = TAP::Harness->new( { verbosity => -2 });
|
||
|
$harness->runtests( "disklist_test.pm" );
|
||
|
|