diff options
| -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 |
