01_create_basic_pos.py

来自「xen虚拟机源代码安装包」· Python 代码 · 共 50 行

PY
50
字号
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2005# Author: Dan Smith <danms@us.ibm.com>import sysimport reimport timefrom XmTestLib import *# Create a domain (default XmTestDomain, with our ramdisk)domain = XmTestDomain()if int(getInfo("free_memory")) < domain.config.getOpt("memory"):    SKIP("This test needs %i MB of free memory (%i MB avail)" %         (domain.config.getOpt("memory"), int(getInfo("free_memory"))))# Start ittry:    console = domain.start()except DomainError, e:    if verbose:        print "Failed to create test domain because:"        print e.extra    FAIL(str(e))try:    # Run 'ls'    run = console.runCmd("ls")except ConsoleError, e:    saveLog(console.getHistory())    FAIL(str(e))# Save a transcript for human reviewsaveLog(console.getHistory())    # Close the consoledomain.closeConsole()# Stop the domain (nice shutdown)domain.stop()# Check the output of 'ls'if not re.search("proc", run["output"]):    if verbose:        print run["output"]    FAIL("'ls' output looks wrong (didn't see /proc)")

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?