summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-04 22:56:17 +0800
committerGitHub <[email protected]>2026-03-04 22:56:17 +0800
commit6f71ecb6dda0eff8db9089c475e4e549c0db1dec (patch)
tree84cdab2f55db71c5a7977a144f15be681ba571ee
parent2566a7d29bbee1c9ee8e65fd0ae81380db65d6ca (diff)
parentd5b63d9e2d554a802a23b7d179b9c910a51a6745 (diff)
Merge pull request #7371 from Stehsaer/fix-test-output
Fix test verbose output
-rw-r--r--xmake/actions/test/main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/test/main.lua b/xmake/actions/test/main.lua
index 9162da829..46459d648 100644
--- a/xmake/actions/test/main.lua
+++ b/xmake/actions/test/main.lua
@@ -318,7 +318,7 @@ function _show_output(testinfo, kind)
io.writefile(logfile, output)
print("%s: %s", kind, logfile)
elseif option.get("verbose") then
- cprint("%s: %s", kind, output)
+ io.write(kind .. ": " .. output .. "\n")
end
end
end