Skip to content

Commit 6f71ecb

Browse files
authored
Merge pull request #7371 from Stehsaer/fix-test-output
Fix test verbose output
2 parents 2566a7d + d5b63d9 commit 6f71ecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xmake/actions/test/main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ function _show_output(testinfo, kind)
318318
io.writefile(logfile, output)
319319
print("%s: %s", kind, logfile)
320320
elseif option.get("verbose") then
321-
cprint("%s: %s", kind, output)
321+
io.write(kind .. ": " .. output .. "\n")
322322
end
323323
end
324324
end

0 commit comments

Comments
 (0)