diff options
| author | ruki <[email protected]> | 2023-10-29 15:39:15 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-10-29 15:39:15 +0800 |
| commit | 8907ec8b57df617ff82cfbfecd89303df7e7436e (patch) | |
| tree | 6003c9dd13ffd4a49aaa042bf291f93888a490e9 | |
| parent | 9998f1b9a224068fde448052758bc23e2150745f (diff) | |
remove debug logs
| -rw-r--r-- | xmake/actions/test/main.lua | 5 |
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 |
