📄 16_create_smallmem_neg.py
字号:
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2005# Author: Dan Smith <danms@us.ibm.com>import refrom XmTestLib import *# This is under the default lower limit of 32 and we expect this test# to fail. 16MBs isn't enough for the -xen kernel.MEM = 16domain = XmTestDomain(extraConfig={"memory": MEM, "extra" :"mem=%iM" % MEM})try: console = domain.start() console.runCmd("ls")except DomainError, e: if not re.search('^Error: Domain memory must be at least \d+ KB', e.extra): # PPC gracefully fails like this, rather than crashing. FAIL("Unable to start a domain with %i MB" % MEM)except ConsoleError, e: if e.reason == RUNAWAY: print "Domain with %i MB has runaway console as expected" % MEMelse: FAIL("Starting a console with %i MB passed, expected test to fail" % MEM)print "Starting a domain with %i MB failed as expected" % MEMdomain.destroy()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -