aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/pause/02_pause_badopt_neg.py
blob: 82173f14e62fa11e19e6e4a0cbcd919af2d00e96 (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
#!/usr/bin/python

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

import time
import re

from XmTestLib import *

domain = XmTestDomain()

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

status, output = traceCommand("xm pause -x %s" % domain.getName())

eyecatcher = "Error"
where = output.find(eyecatcher)
if status == 0:
    domain.destroy()
    FAIL("xm pause returned bad status, expected non 0, status is: %i" % status )
elif where == -1:
    domain.destroy()
    FAIL("xm pause returned bad output, expected Error, output is: %s" % output )

domain.destroy()