summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/test_culling.lua
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2025-09-15 04:05:37 +0200
committerArthur LAURENT <[email protected]>2025-09-18 07:07:25 +0200
commit213876242403c07495d4866de2f49ecfaf6fcfa9 (patch)
tree305eaaa3a7d5404725d26fd6737155c16cddd486 /tests/projects/c++/modules/test_culling.lua
parent438fdf4c5cf90993aca9f7be0280ddf0c298f42a (diff)
fix(C++ modules) fix outdata check in modules tests
Diffstat (limited to 'tests/projects/c++/modules/test_culling.lua')
-rw-r--r--tests/projects/c++/modules/test_culling.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/c++/modules/test_culling.lua b/tests/projects/c++/modules/test_culling.lua
index 9accf9a12..a2b046e74 100644
--- a/tests/projects/c++/modules/test_culling.lua
+++ b/tests/projects/c++/modules/test_culling.lua
@@ -7,7 +7,7 @@ MSVC_MIN_VER = "14.29"
function main(_)
local check_outdata = {str = "culled", format_string = "Modules culling does not work"}
local clang_options = {compiler = "clang", version = CLANG_MIN_VER, check_outdata = check_outdata}
- local gcc_options = {compiler = "gcc", version = GCC_MIN_VER, check_outdata}
- local msvc_options = {version = MSVC_MIN_VER, check_outdata}
+ local gcc_options = {compiler = "gcc", version = GCC_MIN_VER, check_outdata = check_outdata}
+ local msvc_options = {version = MSVC_MIN_VER, check_outdata = check_outdata}
run_tests(clang_options, gcc_options, msvc_options)
end