aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/memset/03_memset_random_pos.py
blob: 25937019b1f62ef95374e3de04124386e23fbbbc (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/python

# Copyright (C) International Business Machines Corp., 2005
# Author: Dan Smith <danms@us.ibm.com>

import random
import re

from XmTestLib import *

if ENABLE_HVM_SUPPORT:
    SKIP("Mem-set not supported for HVM domains")

domain = XmTestDomain()

try:
    console = domain.start()
except DomainError, e:
    if verbose:
        print "Failed to start domain:"
        print e.extra
    FAIL(str(e))

times = random.randint(10,50)

xen_mem = XenMemory(console)

origmem = xen_mem.get_mem_from_domU()
currmem = origmem

for i in range(0,times):
    amt = random.randint(-10,10)

    target = currmem + amt

    # Make sure we're not going over or under
    if target < domain.minSafeMem():
        continue
    if target > origmem:
        continue

    if verbose:
        print "[%i/%i] Current: %i Target: %i" % (i, times, currmem, target)

    cmd = "xm mem-set %s %i" % (domain.getName(), target)
    status, output = traceCommand(cmd)

    if status != 0:
        if verbose:
            print "mem-set failed:"
            print output
        FAIL("mem-set from %i to %i failed" % (currmem, target))
    
    domUmem = xen_mem.get_mem_from_domU()

    currmem = target
    actual = int(getDomInfo(domain.getName(), "Mem"))

    if actual != currmem:
        FAIL("Expected %i MB, xm reported %i MB" % (currmem, actual))
    if domUmem != currmem:
        FAIL("Expected %i MB, domU reported %i MB" % (currmem, domUmem))