blob: e074c0d16aaeb729c261128f74771fde17a8d1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/python
# Copyright (C) International Business Machines Corp., 2005
# Author: Woody Marvel <marvel@us.ibm.com>
import re
from XmTestLib import *
status, output = traceCommand("xm dmesg -x")
eyecatcher = "Error:"
where = output.find(eyecatcher)
if status == 0:
FAIL("xm dmesg returned invalid %i != 0" % status)
elif where == -1:
FAIL("xm dmesg failed to report error for bad arg")
|