03_network_attach_detach_multiple_pos.py

来自「xen 3.2.2 源码」· Python 代码 · 共 52 行

PY
52
字号
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2005# Author: Murillo F. Bernardes <mfb@br.ibm.com>import sysimport reimport timefrom XmTestLib import *from XmTestLib.network_utils import *if ENABLE_HVM_SUPPORT:    SKIP("Network-attach not supported for HVM domains")# Create a domain (default XmTestDomain, with our ramdisk)domain = XmTestDomain()try:    console = domain.start()except DomainError, e:    if verbose:        print "Failed to create test domain because:"        print e.extra    FAIL(str(e))console.debugMe = Truetry:    # Run 'ls'    run = console.runCmd("ls")except ConsoleError, e:    saveLog(console.getHistory())    FAIL(str(e))    for i in range(10):    print "Attaching %d device" % i     status, msg = network_attach(domain.getName(), console)    if status:        FAIL(msg)        print "Detaching %d device" % i     status, msg = network_detach(domain.getName(), console, i)    if status:        FAIL(msg)# Close the consoledomain.closeConsole()# Stop the domain (nice shutdown)domain.stop()

⌨️ 快捷键说明

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