From 8907ec8b57df617ff82cfbfecd89303df7e7436e Mon Sep 17 00:00:00 2001 From: ruki Date: Sun, 29 Oct 2023 15:39:15 +0800 Subject: remove debug logs --- xmake/actions/test/main.lua | 5 +---- 1 file changed, 1 insertion(+), 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 -- cgit v1.3.1