summaryrefslogtreecommitdiffstats
path: root/Tests/Module/WriteCompilerDetectionHeader/main.cpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-11-26 15:37:49 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-11-26 15:37:49 (GMT)
commit6b939536154421b5e18bc8e908b1bd5f7212a536 (patch)
tree3894b072bfe1aeb883cb8711876dd3390d1f0aac /Tests/Module/WriteCompilerDetectionHeader/main.cpp
parent5a611495c220af559e93aa29d5bfc786ff40d440 (diff)
parent4cf5179c77237f3eb56f85eddebc43895691694c (diff)
downloadCMake-6b939536154421b5e18bc8e908b1bd5f7212a536.zip
CMake-6b939536154421b5e18bc8e908b1bd5f7212a536.tar.gz
CMake-6b939536154421b5e18bc8e908b1bd5f7212a536.tar.bz2
Merge topic 'WCDH-multi-file'
4cf5179c WCDH: Make it possible to generate multiple files.
Diffstat (limited to 'Tests/Module/WriteCompilerDetectionHeader/main.cpp')
-rw-r--r--Tests/Module/WriteCompilerDetectionHeader/main.cpp25
1 files changed, 2 insertions, 23 deletions
diff --git a/Tests/Module/WriteCompilerDetectionHeader/main.cpp b/Tests/Module/WriteCompilerDetectionHeader/main.cpp
index b807ad5..82b2191 100644
--- a/Tests/Module/WriteCompilerDetectionHeader/main.cpp
+++ b/Tests/Module/WriteCompilerDetectionHeader/main.cpp
@@ -1,29 +1,8 @@
#include "test_compiler_detection.h"
-#define JOIN_IMPL(A, B) A ## B
-#define JOIN(A, B) JOIN_IMPL(A, B)
-#define CHECK(FEATURE) (JOIN(TEST_COMPILER_, FEATURE) == JOIN(EXPECTED_COMPILER_, FEATURE))
-
-#if !CHECK(CXX_DELEGATING_CONSTRUCTORS)
-#error cxx_delegating_constructors expected availability did not match.
-#endif
-
-#if !CHECK(CXX_VARIADIC_TEMPLATES)
-#error cxx_variadic_templates expected availability did not match.
-#endif
-
-#if !CHECK(VERSION_MAJOR)
-#error Compiler major version did not match.
-#endif
-
-#if !CHECK(VERSION_MINOR)
-#error Compiler minor version did not match.
-#endif
-
-#if !CHECK(VERSION_PATCH)
-#error Compiler patch version did not match.
-#endif
+#define PREFIX TEST
+#include "compile_tests.h"
int main()
{