From 8272e2a036b6d0659242b65f55b5e7b3c28f0341 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Tue, 14 Feb 2006 14:30:42 +0000 Subject: * Makefile.am configure.in python/Makefile.am python/tests/Makefile.am python/tests/basic.py: added first python test script and a 'make tests' target Daniel --- tests/basic.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 tests/basic.py (limited to 'tests/basic.py') diff --git a/tests/basic.py b/tests/basic.py new file mode 100755 index 0000000..a4ff4c4 --- /dev/null +++ b/tests/basic.py @@ -0,0 +1,25 @@ +#!/usr/bin/python -u +import libvirt +import sys + +conn = libvirt.openReadOnly(None) +if conn == None: + print 'Failed to open connection to the hypervisor' + sys.exit(1) + +# print conn + +dom0 = conn.lookupByName("Domain-0") +if dom0 == None: + print 'Failed to find the main domain' + sys.exit(1) + +# print dom0 + +print "Domain 0: id %d running %s" % (dom0.ID(), dom0.OSType()) +print dom0.info() +del dom0 +del conn +print "OK" + +sys.exit(0) -- cgit