ia64/xen-unstable
view tools/xm-test/tests/create/03_create_badparm_neg.py @ 11960:fd5140c2854f
Fix Memory assumptions in the create tests.
Use the architecture specified idea of minimum memory.
Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
Use the architecture specified idea of minimum memory.
Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
author | Ewan Mellor <ewan@xensource.com> |
---|---|
date | Tue Oct 24 14:52:20 2006 +0100 (2006-10-24) |
parents | 725bf42d4713 |
children |
line source
1 #!/usr/bin/python
3 # Copyright (C) International Business Machines Corp., 2005
4 # Author: Li Ge <lge@us.ibm.com>
6 # Test description:
7 # Negative Test:
8 # Test for creating domain with non existent option in the command line.
9 # Verify fail.
11 import re
13 from XmTestLib import *
15 status, output = traceCommand("xm create -x")
16 eyecatcher = "Error:"
17 where = output.find(eyecatcher)
18 if where == -1:
19 FAIL("xm create failed to report error on bad arg")