summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/CMakeLists.txt18
1 files changed, 15 insertions, 3 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 4d6b0dc..448e801 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -45,16 +45,28 @@ macro(castxml_test_gccxml_common prefix ext std test)
)
endmacro()
-macro(castxml_test_gccxml test)
+macro(castxml_test_gccxml_c89 test)
+ castxml_test_gccxml_common(gccxml c c89 ${test})
+endmacro()
+
+macro(castxml_test_gccxml_cxx98 test)
castxml_test_gccxml_common(gccxml cxx c++98 ${test})
endmacro()
-macro(castxml_test_gccxml_broken test)
+macro(castxml_test_gccxml_broken_cxx98 test)
castxml_test_gccxml_common(gccxml.broken cxx c++98 ${test})
endmacro()
macro(castxml_test_gccxml_c test)
- castxml_test_gccxml_common(gccxml c c89 ${test})
+ castxml_test_gccxml_c89(${test})
+endmacro()
+
+macro(castxml_test_gccxml test)
+ castxml_test_gccxml_cxx98(${test})
+endmacro()
+
+macro(castxml_test_gccxml_broken test)
+ castxml_test_gccxml_broken_cxx98(${test})
endmacro()
set(input ${CMAKE_CURRENT_LIST_DIR}/input)