source: trunk/packages/xen-3.1/xen-3.1/tools/xm-test/tests/destroy/04_destroy_badparm_neg.py @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

  • Property svn:mime-type set to text/script
File size: 413 bytes
Line 
1#!/usr/bin/python
2
3# Copyright (C) International Business Machines Corp., 2005
4# Author: Woody Marvel <marvel@us.ibm.com>
5
6import re
7
8from XmTestLib import *
9
10status, output = traceCommand("xm destroy 6666")
11eyecatcher = "Error:"
12where = output.find(eyecatcher)
13if status == 0:
14    FAIL("xm destroy returned invalid %i != 0" % status)
15elif where == -1:
16    FAIL("xm destroy failed to report error for bad domid")
Note: See TracBrowser for help on using the repository browser.