diff options
| author | Daniel P. Berrange <berrange@redhat.com> | 2013-12-11 16:38:43 +0000 |
|---|---|---|
| committer | Daniel P. Berrange <berrange@redhat.com> | 2013-12-11 16:39:13 +0000 |
| commit | ab2b22aa7d9bde348bd1d8ca9a1ecbae77c76f7b (patch) | |
| tree | 5edce92f1842f05c98e78204438a44d481828ff8 | |
| parent | faaf2a48354e3e28bd714625735b0e7b1c386e88 (diff) | |
| download | libvirt-python-ab2b22aa7d9bde348bd1d8ca9a1ecbae77c76f7b.tar.gz | |
Skip network event callbacks in sanity test
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
| -rw-r--r-- | sanitytest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sanitytest.py b/sanitytest.py index 363507b..cff30d5 100644 --- a/sanitytest.py +++ b/sanitytest.py @@ -85,6 +85,8 @@ for cname in wantfunctions: continue if name[0:21] == "virConnectDomainEvent" and name[-8:] == "Callback": continue + if name[0:22] == "virConnectNetworkEvent" and name[-8:] == "Callback": + continue # virEvent APIs go into main 'libvirt' namespace not any class |
