@@ -302,11 +302,11 @@ class Driver {
302302 }
303303 }
304304
305- const totalScore = geomeanScore ( allScores ) ;
306- console . assert ( totalScore > 0 , `Invalid total score: ${ totalScore } ` ) ;
305+ const overallScore = geomeanScore ( allScores ) ;
306+ console . assert ( overallScore > 0 , `Invalid total score: ${ overallScore } ` ) ;
307307
308308 if ( isInBrowser ) {
309- let summaryHtml = `<div class="score">${ uiFriendlyScore ( totalScore ) } </div>
309+ let summaryHtml = `<div class="score">${ uiFriendlyScore ( overallScore ) } </div>
310310 <label>Score</label>` ;
311311 summaryHtml += `<div class="benchmark benchmark-done">` ;
312312 for ( let [ category , scores ] of categoryScores ) {
@@ -329,20 +329,20 @@ class Driver {
329329 summaryElement . onclick = displayCategoryScores ;
330330 statusElement . innerHTML = "" ;
331331 } else if ( ! JetStreamParams . dumpJSONResults ) {
332- console . log ( "Total :" ) ;
332+ console . log ( "Overall :" ) ;
333333 for ( let [ category , scores ] of categoryScores ) {
334334 console . log (
335- shellFriendlyLabel ( `Total ${ category } -Score` ) ,
335+ shellFriendlyLabel ( `Overall ${ category } -Score` ) ,
336336 shellFriendlyScore ( geomeanScore ( scores ) ) ) ;
337337 }
338338 for ( let [ category , times ] of categoryTimes ) {
339339 console . log (
340- shellFriendlyLabel ( `Total ${ category } -Time` ) ,
340+ shellFriendlyLabel ( `Overall ${ category } -Time` ) ,
341341 shellFriendlyDuration ( geomeanScore ( times ) ) ) ;
342342 }
343343 console . log ( "" ) ;
344- console . log ( shellFriendlyLabel ( "Total Score" ) , shellFriendlyScore ( totalScore ) ) ;
345- console . log ( shellFriendlyLabel ( "Total Time" ) , shellFriendlyDuration ( totalTime ) ) ;
344+ console . log ( shellFriendlyLabel ( "Overall Score" ) , shellFriendlyScore ( overallScore ) ) ;
345+ console . log ( shellFriendlyLabel ( "Overall Wall- Time" ) , shellFriendlyDuration ( totalTime ) ) ;
346346 console . log ( "" ) ;
347347 }
348348
@@ -835,8 +835,8 @@ class Benchmark {
835835
836836 allTimes ( ) {
837837 const allTimes = this . subTimes ( ) ;
838- allTimes [ "Wall" ] = this . wallTime ;
839838 allTimes [ "Total" ] = this . totalTime ;
839+ allTimes [ "Wall" ] = this . wallTime ;
840840 return allTimes ;
841841 }
842842
0 commit comments