aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/network-attach/01_network_attach_pos.py
blob: f8e7f1a7489e24c91ded37395c87ecbf0a54fb0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/python

# Copyright (C) International Business Machines Corp., 2005
# Author: Murillo F. Bernardes <mfb@br.ibm.com>

import sys

from XmTestLib import *
from 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))

try:
    # Run 'ls'
    run = console.runCmd("ls")
except ConsoleError, e:
    saveLog(console.getHistory())
    FAIL(str(e))
    
## Real test
status, msg = network_attach(domain.getName(), console)
if status:
    FAIL(msg)


##
# Close the console
domain.closeConsole()

# Stop the domain (nice shutdown)
domain.stop()