aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/create/07_create_mem64_pos.py
blob: ae2f84adb11b782407c84ca89698b5aad297cd62 (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
44
45
46
47
48
49
#!/usr/bin/python

# Copyright (C) International Business Machines Corp., 2005
# Author: Li Ge <lge@us.ibm.com>

# Test Description:
# Positive Test
# Test for creating domain with mem=64.

import sys
import re
import time

from XmTestLib import *

rdpath = os.environ.get("RD_PATH")
if not rdpath:
        rdpath = "../ramdisk"

#get current free memory info
mem = int(getInfo("free_memory"))
if mem < 64:
	SKIP("This test needs 64 MB of free memory (%i MB avail)" % mem)

#create a domain with mem=64
config = {"memory": 64}
domain_mem64=XmTestDomain(extraConfig=config)

#start it
try:
    domain_mem64.start(noConsole=True)
except DomainError, e:
    if verbose:
        print "Failed to create test domain_mem64 because:"
        print e.extra
    FAIL(str(e))

#verify it is running with 64MB mem

eyecatcher1 = str(isDomainRunning(domain_mem64.getName()))
if eyecatcher1 != "True":
	FAIL("Failed to verify that a 64MB domain started")

eyecatcher2 = getDomMem(domain_mem64.getName())
if eyecatcher2 != 64:
	FAIL("Started domain with 64MB, but it got %i MB" % eyecatcher2)

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