summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhsz <[email protected]>2025-04-22 07:22:51 +0800
committerhsz <[email protected]>2025-04-22 07:22:51 +0800
commit3168a19e567cc16fc1f98819ccd87b58d8f6226a (patch)
tree6605aa8d13488a133224b87fa7c84e7603aafde3
parent40bfb6e1980d81454c9592da7eaaf0aded11f1ec (diff)
fix action test
-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