From 38d00246cf20b8000c8def26fc79673b64aa09dc Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Thu, 26 Jun 2025 11:14:42 -0400 Subject: [PATCH] chore(parser/resultdetail): Clock Time -> Wall-clock Time --- internal/parser/resultdetail/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/parser/resultdetail/parser.go b/internal/parser/resultdetail/parser.go index 61efd03..12bff9a 100644 --- a/internal/parser/resultdetail/parser.go +++ b/internal/parser/resultdetail/parser.go @@ -37,7 +37,7 @@ func (*ResultDetail) Run(results []stage.ExecutorResult, confAny any) ( float64(result.Memory)/(1024*1024)) } if conf.ShowRunTime { - comment += fmt.Sprintf("Clock Time: `%d ms`\n", result.RunTime/1e6) + comment += fmt.Sprintf("Wall-clock Time: `%d ms`\n", result.RunTime/1e6) } if conf.ShowProcPeak { comment += fmt.Sprintf("ProcPeak: `%d`\n", result.ProcPeak)