summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/test_partitions.lua
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2025-05-21 01:37:17 +0200
committerArthur LAURENT <[email protected]>2025-05-21 04:53:30 +0200
commit8b4e9f90ba045edb14cb2800c506ee6bc5118cd7 (patch)
treeffa4bc5edf9e19d953689fde3cc811382397e786 /tests/projects/c++/modules/test_partitions.lua
parentbfc0f75db8c238187aa011f522adf9685e023b31 (diff)
(C++ modules support) refactor tests
Diffstat (limited to 'tests/projects/c++/modules/test_partitions.lua')
-rw-r--r--tests/projects/c++/modules/test_partitions.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/test_partitions.lua b/tests/projects/c++/modules/test_partitions.lua
new file mode 100644
index 000000000..ed03bd9d7
--- /dev/null
+++ b/tests/projects/c++/modules/test_partitions.lua
@@ -0,0 +1,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