Skip virNWFilterTechDriver when validating API naming

The virNWFilterTechDriver struct is an internal only driver
API with no public API equivalent. It should be skipped by
the 'check-driverimpls' test case

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrange 2013-04-29 14:39:04 +01:00
parent dc34fc16be
commit 4e6b73d239

View File

@ -68,7 +68,8 @@ while (<>) {
}
}
} elsif (/^(?:static\s+)?(vir(?:\w+)?Driver)\s+/) {
next if $1 eq "virNWFilterCallbackDriver";
next if $1 eq "virNWFilterCallbackDriver" ||
$1 eq "virNWFilterTechDriver";
$intable = 1;
$table = $1;
}