blob: 66f96227aa1aed3e06725b86c74e56c332cc8eab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
inherit("test_base")
CLANG_MIN_VER = "17"
GCC_MIN_VER = "11"
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}
run_tests(clang_options, gcc_options, msvc_options)
end
|