diff options
author | Pavel Hrdina <phrdina@redhat.com> | 2015-03-28 11:21:56 +0100 |
---|---|---|
committer | Pavel Hrdina <phrdina@redhat.com> | 2015-03-28 11:21:56 +0100 |
commit | 0be1f5e31a06af9d93d5de73242de7f263cc5c3d (patch) | |
tree | 5f360af7781f543dbecc4f8047419d9d53033107 /sanitytest.py | |
parent | e1e9b270965a94ce703d9cb2a458824877a77cf0 (diff) | |
download | libvirt-python-1.2.14.tar.gz |
Expose virDomainInterfacesAddresses to python bindingv1.2.14
examples/Makefile.am:
* Add new file domipaddrs.py
examples/README:
* Add documentation for the python example
libvirt-override-api.xml:
* Add new symbol for virDomainInterfacesAddresses
libvirt-override.c:
* Hand written python api
Example:
$ python examples/domipaddrs.py qemu:///system f18
Interface MAC address Protocol Address
vnet0 52:54:00:20:70:3d ipv4 192.168.105.240/16
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Diffstat (limited to 'sanitytest.py')
-rw-r--r-- | sanitytest.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sanitytest.py b/sanitytest.py index db65a6d..eb44cdb 100644 --- a/sanitytest.py +++ b/sanitytest.py @@ -145,6 +145,9 @@ for cname in wantfunctions: if name[0:25] == "virDomainIOThreadInfoFree": continue + if name[0:22] == "virDomainInterfaceFree": + continue + if name[0:21] == "virDomainListGetStats": name = "virConnectDomainListGetStats" |