OOPS
run_time_test.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 
3 """
4 Comparison of two CTestCostData.txt based on
5 configurations in the given yaml file.
6 
7 run_time_test.py ref_costdata.txt run_costdata.txt test_time.yaml
8 
9 """
10 
11 import yaml
12 import sys
13 
14 refFile = str(sys.argv[1])
15 runFile = str(sys.argv[2])
16 yamlFile = str(sys.argv[3])
17 
18 with open(refFile) as f:
19  ref_file = f.read()
20 
21 with open(runFile) as f:
22  run_file = f.read()
23 
24 ref_file_dict = {}
25 for item in ref_file.split("\n"):
26  if len(item.split(' ')) == 3:
27  key = item.split(' ')[0]
28  val = float(item.split(' ')[2])
29  ref_file_dict[key] = val
30 
31 run_file_dict = {}
32 for item in run_file.split("\n"):
33  if len(item.split(' ')) == 3:
34  key = item.split(' ')[0]
35  val = float(item.split(' ')[2])
36  run_file_dict[key] = val
37 
38 with open(yamlFile) as f:
39  #config_data = yaml.load(f, Loader=yaml.FullLoader)
40  config_data = yaml.load(f)
41 
42 status = "pass"
43 
44 for tests in config_data:
45  TestName = tests['TestName']
46  Tol = tests['Tolerance']
47  time_ref = ref_file_dict.get(TestName)
48  time_run = run_file_dict.get(TestName)
49 
50  if all(t is not None for t in [time_ref, time_run]):
51  rdiff = 100*(abs(float(time_ref) - float(time_run))/float(time_ref))
52 
53  if (time_ref < time_run and rdiff > Tol):
54  status = "fail"
55  print("Test "+TestName+" failed")
56  print("time_run = "+str(round(time_run,4)))
57  print("time_ref = "+str(round(time_ref,4)))
58  print("rdiff (%) = "+str(round(rdiff,2)))
59  else:
60  if status == "pass":
61  status = "pass"
62  print("Test "+TestName+" passed")
63  print("***************************")
64  else:
65  print("time for "+TestName+" is missing")
66 
67 if status == "fail":
68  sys.exit(1)
69