⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 01_pause_basic_pos.py

📁 xen虚拟机源代码安装包
💻 PY
字号:
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2005# Author: Paul Larson  <pl@us.ibm.com># Description:# Positive Tests:# Tests for xm pause# 1) Create domain, verify it's up with console# 2) pause the domain# 3) verify it's paused by failure to connect consoleimport timeimport commandsfrom XmTestLib import *# Create a domain (default XmTestDomain, with our ramdisk)domain = XmTestDomain()# Start ittry:    console = domain.start()except DomainError, e:    if verbose:        print "Failed to create test domain because:"        print e.extra    FAIL(str(e))try:    # Make sure a command succeeds    run = console.runCmd("ls")except ConsoleError, e:    FAIL(str(e))# Close the consoledomain.closeConsole()# Pause the domainstatus, output = traceCommand("xm pause %s" % domain.getName())if status != 0:    FAIL("xm pause returned invalid %i != 0", status)# Try to attach a console to ittry:    console = domain.getConsole()    console.setHistorySaveCmds(value=True)    run = console.runCmd("ls")    #If we get here, console attached to paused domain (unexpected)    FAIL("console attached to supposedly paused domain")except ConsoleError, e:    pass# Close the consoledomain.closeConsole()status, output = traceCommand("xm unpause %s" % domain.getName())if status != 0:    FAIL("xm unpause returned invalid %i != 0", status)# Stop the domain (nice shutdown)domain.stop()

⌨️ 快捷键说明

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