blob: ed03bd9d725dd6a454eb6254de9f5b21996d7001 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
inherit("test_base")
CLANG_MIN_VER = "18"
GCC_MIN_VER = "13"
MSVC_MIN_VER = "14.30"
function main(_)
local clang_options = {compiler = "clang", version = CLANG_MIN_VER}
local gcc_options = {compiler = "gcc", version = GCC_MIN_VER}
local msvc_options = {version = MSVC_MIN_VER}
run_tests(clang_options, gcc_options, msvc_options)
end
|