From: Daniel P. Berrange Date: Mon, 29 Apr 2013 13:39:04 +0000 (+0100) Subject: Skip virNWFilterTechDriver when validating API naming X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4e6b73d23923fa70b44b647efe499a2060be3576;p=libvirt.git 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 --- diff --git a/src/check-driverimpls.pl b/src/check-driverimpls.pl index e385de0692..17e2b481a3 100755 --- a/src/check-driverimpls.pl +++ b/src/check-driverimpls.pl @@ -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; }