4 Comparison of two CTestCostData.txt based on
5 configurations in the given yaml file.
7 run_time_test.py ref_costdata.txt run_costdata.txt test_time.yaml
14 refFile = str(sys.argv[1])
15 runFile = str(sys.argv[2])
16 yamlFile = str(sys.argv[3])
18 with open(refFile)
as f:
21 with open(runFile)
as f:
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
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
38 with open(yamlFile)
as f:
40 config_data = yaml.load(f)
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)
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))
53 if (time_ref < time_run
and rdiff > Tol):
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)))
62 print(
"Test "+TestName+
" passed")
63 print(
"***************************")
65 print(
"time for "+TestName+
" is missing")