blob: 370ea9b328e97a5c49cb3f5b622068b286944289 [file] [log] [blame]
from autotest_utils import *
import os, sys
class system:
def __init__(self):
self.autodir = os.environ['AUTODIR']
self.resultdir = self.autodir + '/results'
self.tmpdir = self.autodir + '/tmp'
if not os.path.isdir(self.resultdir):
os.mkdir(self.resultdir)
if not os.path.isdir(self.tmpdir):
os.mkdir(self.tmpdir)
return None
def boot(self, tag=None):
print "I OUGHT TO REBOOT NOW!"