summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/string/Repeat.cmake
diff options
context:
space:
mode:
authorAlex Turbov <i.zaufi@gmail.com>2019-04-06 09:53:58 (GMT)
committerBrad King <brad.king@kitware.com>2019-04-15 15:06:06 (GMT)
commit536cca60ea1c037d751b03bf5da8385783856000 (patch)
tree5b3e22733a4ae2f729a3e358175ee5b69b7a5d6e /Tests/RunCMake/string/Repeat.cmake
parentdb6fdfdb053a372382ff8eadad9bfa47c1a3b4bc (diff)
downloadCMake-536cca60ea1c037d751b03bf5da8385783856000.zip
CMake-536cca60ea1c037d751b03bf5da8385783856000.tar.gz
CMake-536cca60ea1c037d751b03bf5da8385783856000.tar.bz2
string: introduce `REPEAT` sub-command
Diffstat (limited to 'Tests/RunCMake/string/Repeat.cmake')
-rw-r--r--Tests/RunCMake/string/Repeat.cmake45
1 files changed, 45 insertions, 0 deletions
diff --git a/Tests/RunCMake/string/Repeat.cmake b/Tests/RunCMake/string/Repeat.cmake
new file mode 100644
index 0000000..fc390aa
--- /dev/null
+++ b/Tests/RunCMake/string/Repeat.cmake
@@ -0,0 +1,45 @@
+string(REPEAT "q" 4 q_out)
+
+if(NOT DEFINED q_out)
+ message(FATAL_ERROR "q_out is not defined")
+endif()
+
+if(NOT q_out STREQUAL "qqqq")
+ message(FATAL_ERROR "unexpected result")
+endif()
+
+string(REPEAT "1234" 0 zero_out)
+
+if(NOT DEFINED zero_out)
+ message(FATAL_ERROR "zero_out is not defined")
+endif()
+
+if(NOT zero_out STREQUAL "")
+ message(FATAL_ERROR "unexpected result")
+endif()
+
+unset(zero_out)
+
+string(REPEAT "" 100 zero_out)
+
+if(NOT DEFINED zero_out)
+ message(FATAL_ERROR "zero_out is not defined")
+endif()
+
+if(NOT zero_out STREQUAL "")
+ message(FATAL_ERROR "unexpected result")
+endif()
+
+string(REPEAT "1" 1 one_out)
+
+if(NOT one_out STREQUAL "1")
+ message(FATAL_ERROR "unexpected result")
+endif()
+
+unset(one_out)
+
+string(REPEAT "one" 1 one_out)
+
+if(NOT one_out STREQUAL "one")
+ message(FATAL_ERROR "unexpected result")
+endif()