summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-04-22 17:40:45 +0800
committerGitHub <[email protected]>2025-04-22 17:40:45 +0800
commit50def2df2bd6099720c7db2480004f29c7bc7e74 (patch)
tree6605aa8d13488a133224b87fa7c84e7603aafde3
parent40bfb6e1980d81454c9592da7eaaf0aded11f1ec (diff)
parent3168a19e567cc16fc1f98819ccd87b58d8f6226a (diff)
Merge pull request #6349 from hszSoft/dev
fix action test for namespace
-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 7fa42e3cf..ede4aa9b2 100644
--- a/xmake/actions/test/main.lua
+++ b/xmake/actions/test/main.lua
@@ -472,7 +472,7 @@ function main()
-- build targets with the given tests first
local targetnames = {}
for _, testinfo in table.orderpairs(tests) do
- local targetname = testinfo.target:name()
+ local targetname = testinfo.target:fullname()
if testinfo.build_should_pass then
local passed, errors = _try_build_target(targetname)
testinfo.passed = passed