File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -1125,25 +1125,14 @@ class Benchmark {
1125
1125
}
1126
1126
1127
1127
updateConsoleAfterRun ( scoreEntries ) {
1128
- // FIXME: consider removing this mapping.
1129
- // Rename for backwards compatibility.
1130
- const legacyScoreNameMap = {
1131
- __proto__ : null ,
1132
- "First" : "Startup" ,
1133
- "Worst" : "Worst Case" ,
1134
- "MainRun" : "Tests" ,
1135
- "Runtime" : "Run time" ,
1136
- } ;
1137
1128
for ( let [ name , value ] of scoreEntries ) {
1138
- if ( name in legacyScoreNameMap )
1139
- name = legacyScoreNameMap [ name ] ;
1140
1129
console . log ( ` ${ name } :` , uiFriendlyScore ( value ) ) ;
1141
1130
}
1142
1131
if ( RAMification ) {
1143
1132
console . log ( " Current Footprint:" , uiFriendlyNumber ( this . currentFootprint ) ) ;
1144
1133
console . log ( " Peak Footprint:" , uiFriendlyNumber ( this . peakFootprint ) ) ;
1145
1134
}
1146
- console . log ( " Wall time :" , uiFriendlyDuration ( this . endTime - this . startTime ) ) ;
1135
+ console . log ( " Wall-Time :" , uiFriendlyDuration ( this . endTime - this . startTime ) ) ;
1147
1136
}
1148
1137
} ;
1149
1138
You can’t perform that action at this time.
0 commit comments