diff options
| author | ruki <[email protected]> | 2026-02-06 00:09:36 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-02-06 00:09:36 +0800 |
| commit | f84347ec241e9edc94c1f43f1e3450d49a7c4262 (patch) | |
| tree | bdae171371a5859f033a6d6b192d5c7c02b0ba24 | |
| parent | 75296c694d98cd1dbd624f6e38f69d167d91a3c7 (diff) | |
add some comments
| -rw-r--r-- | xmake/actions/test/main.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/actions/test/main.lua b/xmake/actions/test/main.lua index 5e0f761cd..4341940d2 100644 --- a/xmake/actions/test/main.lua +++ b/xmake/actions/test/main.lua @@ -33,6 +33,9 @@ import("actions.build.main", {rootdir = os.programdir(), alias = "build_action"} import("utils.progress") import("private.utils.target", {alias = "target_utils"}) +-- Load expected outputs from files for pass_output_files/fail_output_files. +-- Resolve relative paths from the target scriptdir. +-- https://github.com/xmake-io/xmake/issues/7255 function _load_output_files(target, files, opt) files = table.wrap(files) if #files == 0 then |
