diff options
| author | Arthur LAURENT <[email protected]> | 2025-11-04 12:36:33 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2025-11-04 12:36:33 +0100 |
| commit | ce723897432dad8d8f94ddf831e3a8d7db6e2700 (patch) | |
| tree | 2f2b90ec77ff0cf6093f2e534e69d9e9eda116dc /tests/projects/c++/modules/test_xmake_test.lua | |
| parent | 791bb25721f76b49b384b6f8657bac7660036b4a (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.lua | 3 |
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) |
