diff options
| author | Shiffted <[email protected]> | 2026-03-29 06:12:16 +0200 |
|---|---|---|
| committer | Shiffted <[email protected]> | 2026-03-29 06:12:16 +0200 |
| commit | 588e82f7ceb553340cc25135053436be4b115d20 (patch) | |
| tree | ae8e2fbfa671a6be3dadecf5e1f3ff3c617c726c | |
| parent | 1df5ac2921a800c766fc64d4db6a85975c171e32 (diff) | |
fix setting test kind
| -rw-r--r-- | xmake/actions/test/main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/test/main.lua b/xmake/actions/test/main.lua index 46459d648..7dcf3201c 100644 --- a/xmake/actions/test/main.lua +++ b/xmake/actions/test/main.lua @@ -536,7 +536,7 @@ function get_tests() target_new:remove("files", file) end if extra.kind then - target_new:set("kind", kind) + target_new:set("kind", extra.kind) end if extra.frameworks then target_new:add("frameworks", extra.frameworks) |
