summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/test_xmake_test.lua
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2025-11-04 12:36:33 +0100
committerArthur LAURENT <[email protected]>2025-11-04 12:36:33 +0100
commitce723897432dad8d8f94ddf831e3a8d7db6e2700 (patch)
tree2f2b90ec77ff0cf6093f2e534e69d9e9eda116dc /tests/projects/c++/modules/test_xmake_test.lua
parent791bb25721f76b49b384b6f8657bac7660036b4a (diff)
fix module reusage with xmake test
Diffstat (limited to 'tests/projects/c++/modules/test_xmake_test.lua')
-rw-r--r--tests/projects/c++/modules/test_xmake_test.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/projects/c++/modules/test_xmake_test.lua b/tests/projects/c++/modules/test_xmake_test.lua
index 6ad2414f6..2d0b0a2d1 100644
--- a/tests/projects/c++/modules/test_xmake_test.lua
+++ b/tests/projects/c++/modules/test_xmake_test.lua
@@ -11,8 +11,7 @@ function run_xmake_test(...)
flags = "-vD"
end
local outdata, errdata = os.iorun("xmake test " .. flags)
- print(outdata, errdata)
- -- assert(outdata, errdata)
+ assert(outdata, errdata)
end
function main(t)