chore(parser/resultdetail): RunTime -> Clock Time
All checks were successful
submodules sync / sync (push) Successful in 1m1s
build / build (push) Successful in 3m10s
build / trigger-build-image (push) Successful in 12s

This commit is contained in:
张泊明518370910136 2025-06-26 07:35:41 -04:00
parent be7ed98c1b
commit 91a51cb84e
GPG Key ID: D47306D7062CDA9D

View File

@ -37,7 +37,7 @@ func (*ResultDetail) Run(results []stage.ExecutorResult, confAny any) (
float64(result.Memory)/(1024*1024))
}
if conf.ShowRunTime {
comment += fmt.Sprintf("RunTime: `%d ms`\n", result.RunTime/1e6)
comment += fmt.Sprintf("Clock Time: `%d ms`\n", result.RunTime/1e6)
}
if conf.ShowProcPeak {
comment += fmt.Sprintf("ProcPeak: `%d`\n", result.ProcPeak)