From 6ca66f6ed0866d0db5caf7478c7cadada1761262 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Mon, 20 Feb 2006 20:50:48 +0000 Subject: * docs/examples/examples.xsl docs/examples/index.html docs/site.xsl: integates the examples page in the web site * docs//* : fixed generator and rebuilt the docs * python/tests/basic.py python/tests/create.py: couple cleanups Daniel --- tests/basic.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/basic.py') diff --git a/tests/basic.py b/tests/basic.py index a4ff4c4..b6f8831 100755 --- a/tests/basic.py +++ b/tests/basic.py @@ -1,6 +1,11 @@ #!/usr/bin/python -u import libvirt import sys +import os + +if not os.access("/proc/xen", os.R_OK): + print 'System is not running a Xen kernel' + sys.exit(1) conn = libvirt.openReadOnly(None) if conn == None: -- cgit