blob: 31768579c7f02a96b735956ad86d5a079c2a48aa [file] [log] [blame]
mbligh05269362007-10-16 16:58:11 +00001# Copyright Martin J. Bligh, Andy Whitcroft, 2007
2#
mblighea397bb2008-02-02 19:17:51 +00003# Define the server-side test class
mbligh05269362007-10-16 16:58:11 +00004#
mbligh05269362007-10-16 16:58:11 +00005
mblighea397bb2008-02-02 19:17:51 +00006import os
7
mblighccb9e182008-04-17 15:42:10 +00008from autotest_lib.client.common_lib import test as common_test
mbligh05269362007-10-16 16:58:11 +00009
10
mblighccb9e182008-04-17 15:42:10 +000011class test(common_test.base_test):
jadmanski0afbb632008-06-06 21:10:57 +000012 pass
mblighdccabe32008-02-01 17:39:32 +000013
14
mblighccb9e182008-04-17 15:42:10 +000015testname = common_test.testname
mbligh05269362007-10-16 16:58:11 +000016
17
18def runtest(job, url, tag, args, dargs):
jadmanski0afbb632008-06-06 21:10:57 +000019 common_test.runtest(job, url, tag, args, dargs,
20 locals(), globals())