summaryrefslogtreecommitdiffstats
path: root/Tests/CompileDefinitions/compiletest.cpp
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-10-12 15:17:30 (GMT)
committerBrad King <brad.king@kitware.com>2012-10-17 20:21:12 (GMT)
commit145a4af8d3812fbd6a28f27e6fd4bb4d60d715af (patch)
tree270027ee7d1da41684b72a1b7f9ac84b3db27d9d /Tests/CompileDefinitions/compiletest.cpp
parente2d141d47410ad17ba2b63fd32a61cead8a50606 (diff)
downloadCMake-145a4af8d3812fbd6a28f27e6fd4bb4d60d715af.zip
CMake-145a4af8d3812fbd6a28f27e6fd4bb4d60d715af.tar.gz
CMake-145a4af8d3812fbd6a28f27e6fd4bb4d60d715af.tar.bz2
GenEx: Test the use of generator expressions to generate lists.
We can't test this in the GeneratorExpression unit test because the ';' chars are processed specically by the CMake function argument parser.
Diffstat (limited to 'Tests/CompileDefinitions/compiletest.cpp')
-rw-r--r--Tests/CompileDefinitions/compiletest.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CompileDefinitions/compiletest.cpp b/Tests/CompileDefinitions/compiletest.cpp
index 4a68a07..f18e59e 100644
--- a/Tests/CompileDefinitions/compiletest.cpp
+++ b/Tests/CompileDefinitions/compiletest.cpp
@@ -34,6 +34,15 @@ enum {
#ifdef GE_NOT_DEFINED
#error Expect not defined generator expression
#endif
+
+#ifndef ARGUMENT
+#error Expected define expanded from list
+#endif
+#ifndef LIST
+#error Expected define expanded from list
+#endif
+
+// TEST_GENERATOR_EXPRESSIONS
#endif
int main(int argc, char **argv)