OOPS
run_time_test.py File Reference

Go to the source code of this file.

Namespaces

 run_time_test
 

Variables

 run_time_test.refFile = str(sys.argv[1])
 
 run_time_test.runFile = str(sys.argv[2])
 
 run_time_test.yamlFile = str(sys.argv[3])
 
 run_time_test.ref_file = f.read()
 
 run_time_test.run_file = f.read()
 
dictionary run_time_test.ref_file_dict = {}
 
 run_time_test.key = item.split(' ')[0]
 
 run_time_test.val = float(item.split(' ')[2])
 
dictionary run_time_test.run_file_dict = {}
 
 run_time_test.config_data = yaml.load(f)
 
string run_time_test.status = "pass"
 
 run_time_test.TestName = tests['TestName']
 
 run_time_test.Tol = tests['Tolerance']
 
dictionary run_time_test.time_ref = ref_file_dict.get(TestName)
 
dictionary run_time_test.time_run = run_file_dict.get(TestName)
 
int run_time_test.rdiff = 100*(abs(float(time_ref) - float(time_run))/float(time_ref))