aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/lib/XmTestLib/__init__.py
blob: 40aacf7ecdcef80930eade1fa760e6ef9a0bbb04 (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
#
# Copyright (C) International Business Machines Corp., 2005
# Author: Dan Smith <danms@us.ibm.com>
#

from Console import *
from Test import *
from Xm import *
from XenDomain import *
from config import *
from XenDevice import *
from NetConfig import *

# Give this test a clean slate
destroyAllDomUs()

if os.environ.get("TEST_VERBOSE"):
    verbose = True
else:
    verbose = False

if verbose:
    timeStamp()

# We need to track network configuration, like ips, etc.
xmtest_netconf = NetConfig()