summaryrefslogtreecommitdiffstats
path: root/tests/create.py
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2006-03-28 14:41:04 +0000
committerDaniel Veillard <veillard@redhat.com>2006-03-28 14:41:04 +0000
commit1027aa871cf478a54d77088199da8caabacbe3a0 (patch)
treeefdb320396183d0cb7fd81f38e2f3ca110cef1f7 /tests/create.py
parent86dda3bcc733bd0cbb1b0c50417d677fe9ad2a98 (diff)
downloadlibvirt-python-split-1027aa871cf478a54d77088199da8caabacbe3a0.tar.gz
libvirt-python-split-1027aa871cf478a54d77088199da8caabacbe3a0.tar.xz
libvirt-python-split-1027aa871cf478a54d77088199da8caabacbe3a0.zip
* python/libvir.c: call the initialize entry point
* src/libvirt_sym.version: add initialize entry point * src/libvirt.c: make sure we always initialize the lib * python/tests/*.py: start updating exemple for exception handling as pointed by Jim Meyering Daniel
Diffstat (limited to 'tests/create.py')
-rwxr-xr-xtests/create.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/create.py b/tests/create.py
index c897741..b717db1 100755
--- a/tests/create.py
+++ b/tests/create.py
@@ -115,13 +115,20 @@ time.sleep(10)
print "shutdown of test domain"
if dom.shutdown() != 0:
+ okay = 0
print 'Failed to shutdown domain test'
i = 0
while i < 30:
time.sleep(1)
i = i + 1
- t = dom.info()[4]
+ try:
+ t = dom.info()[4]
+ except:
+ okay = 0
+ t = -1
+ break;
+
if t == 0:
break