mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user