aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/lib/XmTestLib/__init__.py
blob: 1aa7afe634663e87a4cd408149820e402c697acd (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
#
# 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 *
from XenMemory 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()