summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-29 20:12:05 +0800
committerGitHub <[email protected]>2026-03-29 20:12:05 +0800
commit59fe6e5ed992bd406a357c8f8a7b06b7b853d269 (patch)
treeae8e2fbfa671a6be3dadecf5e1f3ff3c617c726c
parent1df5ac2921a800c766fc64d4db6a85975c171e32 (diff)
parent588e82f7ceb553340cc25135053436be4b115d20 (diff)
Merge pull request #7432 from Shiffted/fix_set_test_kind
fix setting test kind
-rw-r--r--xmake/actions/test/main.lua2
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)