diff options
| author | ruki <[email protected]> | 2025-09-26 22:14:46 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-09-26 22:14:46 +0800 |
| commit | 7c9fbf87ba1d4b48fb111bf3cc4090b5ebcf90b3 (patch) | |
| tree | 94e3d5a47e819b573ada0c418846f70fe1224ae6 /tests/projects/c++/modules/test_base.lua | |
| parent | f6e00b1cc570b023c618f3753f9e0c91b82df652 (diff) | |
| parent | bcc3c5617baad62989a45a44aa2890fda5eba0f3 (diff) | |
Merge pull request #6809 from Arthapz/fix-stdmodule-priority
fix(C++ modules) fix stdmodule priority
Diffstat (limited to 'tests/projects/c++/modules/test_base.lua')
| -rw-r--r-- | tests/projects/c++/modules/test_base.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/c++/modules/test_base.lua b/tests/projects/c++/modules/test_base.lua index 25181fe70..0a0d07dae 100644 --- a/tests/projects/c++/modules/test_base.lua +++ b/tests/projects/c++/modules/test_base.lua @@ -18,7 +18,7 @@ function _build(check_outdata) outdata = os.iorun("xmake -r " .. flags) if outdata then if outdata:find(check_outdata.str, 1, true) then - raise(check_outdata.format_string, outdata) + raise(check_outdata.format_string .. "\n%s", outdata) end end else @@ -107,7 +107,7 @@ function build_tests(toolchain_name, opt) if opt.build then opt.build() else - _build(opt.find_in_outdata) + _build(opt.check_outdata) end if opt.after_build then opt.after_build(platform, toolchain_name, runtimes, policies, flags) |
