RSS Git Download  Clone
Raw Blame History
#!/usr/bin/env python2
# Tile:		testSelfTest.py
# Author:	M.Thomas BEAM Ltd
# Date:		2007-05-09
#
# Contents:	Testing tms API
#

import sys
import os
import os.path
from TestHarness import *
		
def testTest(t):
	t.runTest("tmsControl --init " + t.host,"Failure during init")
	s = t.runTestPipe("tmsControl --test " + t.host,"Failure to read test")
			
def main():
	t = TestHarness()

	testTest(t);

if __name__ =="__main__":
	main();