File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/benchmarks/driver_bench/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -203,8 +203,8 @@ function calculateNormalizedResults(results: MetricInfo[]): MetricInfo[] {
203203 const primesBench = results . find ( r => r . info . test_name === 'primes' ) ;
204204 const pingBench = results . find ( r => r . info . test_name === 'ping' ) ;
205205
206- assert . ok ( pingBench ) ;
207- assert . ok ( primesBench ) ;
206+ assert . ok ( pingBench , 'ping bench results not found!' ) ;
207+ assert . ok ( primesBench , 'primes bench results not found!' ) ;
208208 const pingThroughput = pingBench . metrics [ 0 ] . value ;
209209 const primesThroughput = primesBench . metrics [ 0 ] . value ;
210210 primesBench . metrics . push ( { 'name' : 'normalized_throughput' , value : NORMALIZED_PING_SCALING_CONST * pingThroughput / primesThroughput } ) ;
You can’t perform that action at this time.
0 commit comments