Update NEWS entries to reflect new version
[pkg-k5-afs_openafs.git] / tests / venus / fs-man-t
blob3267b5ddd8c1d26c4b8d55b29d0383d2da0f68cb
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
5 use File::Basename;
6 use lib "./tests-lib/perl5";
7 use mancheck_utils;
9 # Set this to the bare command to test
10 my $command = 'fs';
11 my $builddir = $ENV{BUILD};
12 if (!$builddir) {
13 $builddir = dirname($0) . "/..";
15 $builddir .= "/..";
16 # Set this to the directory holding $command
17 my $srcdir = "$builddir/src/venus";
19 #---------------------------------------------------------------------
21 my @sub_commands = lookup_sub_commands($srcdir, $command);
22 plan tests => scalar @sub_commands;
24 test_command_man_pages($builddir, $command, @sub_commands);