summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2023-10-29 15:39:15 +0800
committerruki <[email protected]>2023-10-29 15:39:15 +0800
commit8907ec8b57df617ff82cfbfecd89303df7e7436e (patch)
tree6003c9dd13ffd4a49aaa042bf291f93888a490e9
parent9998f1b9a224068fde448052758bc23e2150745f (diff)
remove debug logs
-rw-r--r--xmake/actions/test/main.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/xmake/actions/test/main.lua b/xmake/actions/test/main.lua
index 1b046fcee..cdcaa8740 100644
--- a/xmake/actions/test/main.lua
+++ b/xmake/actions/test/main.lua
@@ -36,23 +36,20 @@ import("actions.build.build", {rootdir = os.programdir(), alias = "build_target"
function _do_test_target(target, opt)
opt = opt or {}
- -- TODO
+ -- test build only
if opt.build_only then
local errors
local passed = try {
function ()
- print("build...")
build_target(target:name())
return true
end,
catch {
function (errs)
errors = tostring(errs)
- print("xxxx")
end
}
}
- print("ssssssssssssss")
return passed, errors
end