mbligh | 0526936 | 2007-10-16 16:58:11 +0000 | [diff] [blame] | 1 | # Copyright Martin J. Bligh, Andy Whitcroft, 2007 |
| 2 | # |
mbligh | ea397bb | 2008-02-02 19:17:51 +0000 | [diff] [blame] | 3 | # Define the server-side test class |
mbligh | 0526936 | 2007-10-16 16:58:11 +0000 | [diff] [blame] | 4 | # |
mbligh | 0526936 | 2007-10-16 16:58:11 +0000 | [diff] [blame] | 5 | |
mbligh | ea397bb | 2008-02-02 19:17:51 +0000 | [diff] [blame] | 6 | import os |
| 7 | |
mbligh | ccb9e18 | 2008-04-17 15:42:10 +0000 | [diff] [blame] | 8 | from autotest_lib.client.common_lib import test as common_test |
mbligh | 0526936 | 2007-10-16 16:58:11 +0000 | [diff] [blame] | 9 | |
| 10 | |
mbligh | ccb9e18 | 2008-04-17 15:42:10 +0000 | [diff] [blame] | 11 | class test(common_test.base_test): |
jadmanski | 0afbb63 | 2008-06-06 21:10:57 +0000 | [diff] [blame] | 12 | pass |
mbligh | dccabe3 | 2008-02-01 17:39:32 +0000 | [diff] [blame] | 13 | |
| 14 | |
mbligh | 0526936 | 2007-10-16 16:58:11 +0000 | [diff] [blame] | 15 | def runtest(job, url, tag, args, dargs): |
jadmanski | 0afbb63 | 2008-06-06 21:10:57 +0000 | [diff] [blame] | 16 | common_test.runtest(job, url, tag, args, dargs, |
| 17 | locals(), globals()) |