Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
<!-- Add all new changes here. They will be moved under a version at release -->
* `NEW` Added support for Japanese locale
* `FIX` Eliminate floating point error in test benchmark output
* `FIX` Remove luamake install from make scripts

## 3.10.6
Expand Down
2 changes: 1 addition & 1 deletion test/full/projects.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ local function doProjects(pathname)
for uri in files.eachFile() do
local fileClock = os.clock()
diag.doDiagnostic(uri, true)
print('诊断文件耗时:', os.clock() - fileClock, uri)
print('诊断文件耗时:', string.format("%.6f", os.clock() - fileClock), uri)
end

local passed = os.clock() - clock
Expand Down
2 changes: 1 addition & 1 deletion test/full/self.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ for uri in files.eachFile() do
end)
local fileClock = os.clock()
diag.doDiagnostic(uri, true)
print('诊断文件耗时:', os.clock() - fileClock, uri)
print('诊断文件耗时:', string.format("%.6f", os.clock() - fileClock), uri)
::CONTINUE::
end

Expand Down