@@ -729,7 +729,7 @@ def execute_nt_tests(test_log, make_variables, basedir, config):
729729# Keep a mapping of mangled test names, to the original names in the
730730# test-suite.
731731TEST_TO_NAME = {}
732- KNOWN_SAMPLE_KEYS = ('compile ' , 'exec ' , 'hash' ,
732+ KNOWN_SAMPLE_KEYS = ('compile_time ' , 'execution_time ' , 'hash' ,
733733 'gcc.compile' , 'bc.compile' , 'llc.compile' ,
734734 'llc-beta.compile' , 'jit.compile' , 'gcc.exec' , 'llc.exec' ,
735735 'llc-beta.exec' , 'jit.exec' )
@@ -750,10 +750,10 @@ def append_to_sample_keys(tup):
750750 # for now, user time is the unqualified Time stat
751751 if config .test_time_stat == "real" :
752752 time_stat = 'Real_'
753- append_to_sample_keys ((True , 'compile ' , 'CC_' + time_stat + 'Time' ,
753+ append_to_sample_keys ((True , 'compile_time ' , 'CC_' + time_stat + 'Time' ,
754754 None , 'CC' , float ))
755755 append_to_sample_keys ((False , 'hash' , 'CC_Hash' , None , 'CC' , str ))
756- append_to_sample_keys ((True , 'exec ' , 'Exec_' + time_stat + 'Time' ,
756+ append_to_sample_keys ((True , 'execution_time ' , 'Exec_' + time_stat + 'Time' ,
757757 None , 'Exec' , float ))
758758 else :
759759 test_namespace = 'nightlytest'
0 commit comments