Author: gnichols
Date: 2011-04-28 20:02:49 +0000 (Thu, 28 Apr 2011)
New Revision: 922
Modified:
trunk/tests/fencing/fencing.py
Log:
641157 - Fencing test gives result of AUTO when run, instead of PASS or FAIL
Modified: trunk/tests/fencing/fencing.py
===================================================================
--- trunk/tests/fencing/fencing.py 2011-04-28 20:02:11 UTC (rev 921)
+++ trunk/tests/fencing/fencing.py 2011-04-28 20:02:49 UTC (rev 922)
@@ -16,7 +16,7 @@
import os, string, sys, time, syslog, urllib2
-from v7.tags import Constants, DeviceClass
+from v7.tags import Constants, DeviceClass, TestTag
from v7.test import Test
from v7.command import Command, V7CommandException
from v7.controller import Controller
@@ -29,6 +29,7 @@
def __init__(self):
Test.__init__(self, name="fencing")
+ self.interactive = False
self.deviceClass = DeviceClass.system
self.environment = Environment()
self.continuation = Continuation(self.environment)
@@ -37,6 +38,9 @@
self.url = "/v7/cgi/v7web.py?command=daemon&subcommand=run&test=fencing"
self.agent = None
+ def tags(self):
+ return [TestTag.noninteractive, TestTag.certification]
+
def plan(self, devices):
tests = list()
# manual planning only, for now