diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-11-26 21:44:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-27 14:12:39 (GMT) |
commit | b581be07672e08cce4c29fa279b250d8e9c7aaba (patch) | |
tree | a6aa4eec9c567567af1ec798006925987500b9d9 /Tests | |
parent | 07749e3705cfc0105399c4a7a8349ec9f83ba39c (diff) | |
download | CMake-b581be07672e08cce4c29fa279b250d8e9c7aaba.zip CMake-b581be07672e08cce4c29fa279b250d8e9c7aaba.tar.gz CMake-b581be07672e08cce4c29fa279b250d8e9c7aaba.tar.bz2 |
Genex: Don't segfault on $<FOO,>
Treat the comma as part of the identifier here. It will later not
resolve to a generator expression and the user gets a proper error
message.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/RunCMake/GeneratorExpression/BadZero-stderr.txt | 9 | ||||
-rw-r--r-- | Tests/RunCMake/GeneratorExpression/BadZero.cmake | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Tests/RunCMake/GeneratorExpression/BadZero-stderr.txt b/Tests/RunCMake/GeneratorExpression/BadZero-stderr.txt index ce04482..40db4ae 100644 --- a/Tests/RunCMake/GeneratorExpression/BadZero-stderr.txt +++ b/Tests/RunCMake/GeneratorExpression/BadZero-stderr.txt @@ -6,3 +6,12 @@ CMake Error at BadZero.cmake:2 \(add_custom_target\): \$<0> expression requires a parameter. Call Stack \(most recent call first\): CMakeLists.txt:3 \(include\) ++ +CMake Error at BadZero.cmake:2 \(add_custom_target\): + Error evaluating generator expression: + + \$<0,> + + Expression did not evaluate to a known generator expression +Call Stack \(most recent call first\): + CMakeLists.txt:3 \(include\) diff --git a/Tests/RunCMake/GeneratorExpression/BadZero.cmake b/Tests/RunCMake/GeneratorExpression/BadZero.cmake index 295ab0e..559a9fa 100644 --- a/Tests/RunCMake/GeneratorExpression/BadZero.cmake +++ b/Tests/RunCMake/GeneratorExpression/BadZero.cmake @@ -1,4 +1,5 @@ add_custom_target(check ALL COMMAND check $<0> + $<0,> VERBATIM) |