RunCMakeTest.cmake 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089
  1. cmake_minimum_required(VERSION 3.1)
  2. include(RunCMake)
  3. run_cmake_command(NoArgs ${CMAKE_COMMAND})
  4. run_cmake_command(InvalidArg1 ${CMAKE_COMMAND} -invalid)
  5. run_cmake_command(InvalidArg2 ${CMAKE_COMMAND} --invalid)
  6. run_cmake_command(Wizard ${CMAKE_COMMAND} -i)
  7. run_cmake_command(C-no-arg ${CMAKE_COMMAND} -B DummyBuildDir -C)
  8. run_cmake_command(C-no-arg2 ${CMAKE_COMMAND} -B DummyBuildDir -C -T)
  9. set(RunCMake_TEST_RAW_ARGS [[-C ""]])
  10. run_cmake_command(C-no-arg3 ${CMAKE_COMMAND} -B DummyBuildDir)
  11. unset(RunCMake_TEST_RAW_ARGS)
  12. run_cmake_command(C-no-file ${CMAKE_COMMAND} -B DummyBuildDir -C nosuchcachefile.txt)
  13. run_cmake_command(Cno-file ${CMAKE_COMMAND} -B DummyBuildDir -Cnosuchcachefile.txt)
  14. run_cmake_command(cache-no-file ${CMAKE_COMMAND} nosuchsubdir/CMakeCache.txt)
  15. run_cmake_command(lists-no-file ${CMAKE_COMMAND} nosuchsubdir/CMakeLists.txt)
  16. run_cmake_command(D-no-arg ${CMAKE_COMMAND} -B DummyBuildDir -D)
  17. run_cmake_command(D-no-src ${CMAKE_COMMAND} -B DummyBuildDir -D VAR=VALUE)
  18. run_cmake_command(Dno-src ${CMAKE_COMMAND} -B DummyBuildDir -DVAR=VALUE)
  19. run_cmake_command(U-no-arg ${CMAKE_COMMAND} -B DummyBuildDir -U)
  20. run_cmake_command(U-no-src ${CMAKE_COMMAND} -B DummyBuildDir -U VAR)
  21. run_cmake_command(Uno-src ${CMAKE_COMMAND} -B DummyBuildDir -UVAR)
  22. run_cmake_command(E-no-arg ${CMAKE_COMMAND} -E)
  23. run_cmake_command(E_capabilities ${CMAKE_COMMAND} -E capabilities)
  24. run_cmake_command(E_capabilities-arg ${CMAKE_COMMAND} -E capabilities --extra-arg)
  25. run_cmake_command(E_compare_files-different-eol ${CMAKE_COMMAND} -E compare_files ${RunCMake_SOURCE_DIR}/compare_files/lf ${RunCMake_SOURCE_DIR}/compare_files/crlf)
  26. run_cmake_command(E_compare_files-ignore-eol-same ${CMAKE_COMMAND} -E compare_files --ignore-eol ${RunCMake_SOURCE_DIR}/compare_files/lf ${RunCMake_SOURCE_DIR}/compare_files/crlf)
  27. run_cmake_command(E_compare_files-ignore-eol-empty ${CMAKE_COMMAND} -E compare_files --ignore-eol ${RunCMake_SOURCE_DIR}/compare_files/empty1 ${RunCMake_SOURCE_DIR}/compare_files/empty2)
  28. run_cmake_command(E_compare_files-ignore-eol-nonexistent ${CMAKE_COMMAND} -E compare_files --ignore-eol nonexistent_a nonexistent_b)
  29. run_cmake_command(E_compare_files-invalid-arguments ${CMAKE_COMMAND} -E compare_files file1.txt file2.txt file3.txt)
  30. run_cmake_command(E_echo_append ${CMAKE_COMMAND} -E echo_append)
  31. run_cmake_command(E_rename-no-arg ${CMAKE_COMMAND} -E rename)
  32. run_cmake_command(E_server ${CMAKE_COMMAND} -E server)
  33. run_cmake_command(E_true ${CMAKE_COMMAND} -E true)
  34. run_cmake_command(E_true-extraargs ${CMAKE_COMMAND} -E true ignored)
  35. run_cmake_command(E_false ${CMAKE_COMMAND} -E false)
  36. run_cmake_command(E_false-extraargs ${CMAKE_COMMAND} -E false ignored)
  37. run_cmake_command(E_touch_nocreate-no-arg ${CMAKE_COMMAND} -E touch_nocreate)
  38. run_cmake_command(E_touch-nonexistent-dir ${CMAKE_COMMAND} -E touch "${RunCMake_BINARY_DIR}/touch-nonexistent-dir/foo")
  39. run_cmake_command(E_time ${CMAKE_COMMAND} -E time ${CMAKE_COMMAND} -E echo "hello world")
  40. run_cmake_command(E_time-no-arg ${CMAKE_COMMAND} -E time)
  41. run_cmake_command(E___run_co_compile-no-iwyu ${CMAKE_COMMAND} -E __run_co_compile -- command-does-not-exist)
  42. run_cmake_command(E___run_co_compile-bad-iwyu ${CMAKE_COMMAND} -E __run_co_compile --iwyu=iwyu-does-not-exist -- command-does-not-exist)
  43. run_cmake_command(E___run_co_compile-no--- ${CMAKE_COMMAND} -E __run_co_compile --iwyu=iwyu-does-not-exist command-does-not-exist)
  44. run_cmake_command(E___run_co_compile-no-cc ${CMAKE_COMMAND} -E __run_co_compile --iwyu=iwyu-does-not-exist --)
  45. run_cmake_command(G_no-arg ${CMAKE_COMMAND} -B DummyBuildDir -G)
  46. run_cmake_command(G_bad-arg ${CMAKE_COMMAND} -B DummyBuildDir -G NoSuchGenerator)
  47. run_cmake_command(P_no-arg ${CMAKE_COMMAND} -P)
  48. run_cmake_command(P_no-file ${CMAKE_COMMAND} -P nosuchscriptfile.cmake)
  49. run_cmake_command(P_args ${CMAKE_COMMAND} -P "${RunCMake_SOURCE_DIR}/P_args.cmake" relative/path "${RunCMake_SOURCE_DIR}")
  50. run_cmake_command(P_arbitrary_args ${CMAKE_COMMAND} -P "${RunCMake_SOURCE_DIR}/P_arbitrary_args.cmake" -- -DFOO -S -B --fresh --version)
  51. run_cmake_command(P_fresh ${CMAKE_COMMAND} -P "${RunCMake_SOURCE_DIR}/P_fresh.cmake" --fresh)
  52. run_cmake_command(build-no-dir
  53. ${CMAKE_COMMAND} --build)
  54. run_cmake_command(build-no-cache
  55. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR})
  56. run_cmake_command(build-unknown-command-short
  57. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR} -invalid-command)
  58. run_cmake_command(build-unknown-command-long
  59. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR} --invalid-command)
  60. run_cmake_command(build-unknown-command-partial-match
  61. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR} --targetinvalid)
  62. run_cmake_command(build-invalid-target-syntax
  63. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR} --target=invalid)
  64. run_cmake_command(build-no-generator
  65. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR}/cache-no-generator)
  66. run_cmake_command(build-bad-dir
  67. ${CMAKE_COMMAND} --build dir-does-not-exist)
  68. run_cmake_command(build-bad-generator
  69. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR}/cache-bad-generator)
  70. run_cmake_command(install-prefix-no-arg ${CMAKE_COMMAND} -B DummyBuildDir --install-prefix)
  71. run_cmake_command(install-no-dir
  72. ${CMAKE_COMMAND} --install)
  73. run_cmake_command(install-bad-dir
  74. ${CMAKE_COMMAND} --install dir-does-not-exist)
  75. run_cmake_command(install-unknown-command-short
  76. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR} -invalid-command)
  77. run_cmake_command(install-unknown-command-long
  78. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR} --invalid-command)
  79. run_cmake_command(install-options-to-vars
  80. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-install-options-to-vars
  81. --strip --prefix /var/test --config sample --component pack)
  82. run_cmake_command(install-default-dir-permissions-all
  83. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  84. --default-directory-permissions u=rwx,g=rx,o=rx)
  85. run_cmake_command(install-default-dir-permissions-afew
  86. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  87. --default-directory-permissions u=rwx,g=rx)
  88. run_cmake_command(install-default-dir-permissions-none
  89. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars)
  90. run_cmake_command(install-default-dir-permissions-invalid-comma1
  91. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  92. --default-directory-permissions u=rwxg=,x)
  93. run_cmake_command(install-default-dir-permissions-invalid-comma2
  94. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  95. --default-directory-permissions u=rwxg,=x)
  96. run_cmake_command(install-default-dir-permissions-comma-at-the-end
  97. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  98. --default-directory-permissions u=rwx,)
  99. run_cmake_command(install-default-dir-permissions-invalid-assignment
  100. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  101. --default-directory-permissions u=rwx,=x)
  102. run_cmake_command(install-default-dir-permissions-assignment-at-the-end
  103. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  104. --default-directory-permissions u=rwx,g=)
  105. run_cmake_command(install-default-dir-permissions-assignment-at-the-beginning
  106. ${CMAKE_COMMAND} --install ${RunCMake_SOURCE_DIR}/dir-permissions-install-options-to-vars
  107. --default-directory-permissions =u=rwx,g=rx)
  108. run_cmake_command(cache-bad-entry
  109. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR}/cache-bad-entry/)
  110. run_cmake_command(cache-empty-entry
  111. ${CMAKE_COMMAND} --build ${RunCMake_SOURCE_DIR}/cache-empty-entry/)
  112. function(run_ExplicitDirs)
  113. set(RunCMake_TEST_NO_CLEAN 1)
  114. set(RunCMake_TEST_NO_SOURCE_DIR 1)
  115. set(source_dir ${RunCMake_BINARY_DIR}/ExplicitDirsMissing)
  116. file(REMOVE_RECURSE "${source_dir}")
  117. file(MAKE_DIRECTORY "${source_dir}")
  118. file(WRITE ${source_dir}/CMakeLists.txt [=[
  119. cmake_minimum_required(VERSION 3.13)
  120. project(ExplicitDirsMissing LANGUAGES NONE)
  121. ]=])
  122. set(RunCMake_TEST_SOURCE_DIR "${source_dir}")
  123. set(RunCMake_TEST_BINARY_DIR "${source_dir}")
  124. run_cmake_with_options(ExplicitDirs-no-S-B -DFOO=BAR)
  125. file(WRITE ${source_dir}/CMakeLists.txt [=[
  126. cmake_minimum_required(VERSION 3.13)
  127. project(ExplicitDirsMissing LANGUAGES NONE)
  128. if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
  129. message(FATAL_ERROR "CWD used as binary dir")
  130. endif()
  131. message(STATUS "CMAKE_SOURCE_DIR='${CMAKE_SOURCE_DIR}'")
  132. message(STATUS "CMAKE_BINARY_DIR='${CMAKE_BINARY_DIR}'")
  133. ]=])
  134. file(REMOVE_RECURSE "${source_dir}/build")
  135. # Test with a setup where binary_dir won't be created by `run_cmake_with_options`
  136. run_cmake_with_options(ExplicitDirs-S-arg-build-dir-not-created -S ${source_dir} build/)
  137. run_cmake_with_options(ExplicitDirs-S-arg-reverse-build-dir-not-created build/ -S${source_dir} )
  138. file(REMOVE_RECURSE "${source_dir}/build")
  139. file(MAKE_DIRECTORY "${source_dir}/build")
  140. run_cmake_with_options(ExplicitDirs-S-arg-build-dir-empty -S ${source_dir} build/)
  141. set(source_dir ${RunCMake_SOURCE_DIR}/ExplicitDirs)
  142. set(binary_dir ${RunCMake_BINARY_DIR}/ExplicitDirs-build)
  143. set(working_dir ${RunCMake_BINARY_DIR}/ExplicitDirs-cwd)
  144. set(RunCMake_TEST_SOURCE_DIR "${source_dir}")
  145. set(RunCMake_TEST_BINARY_DIR "${binary_dir}")
  146. file(MAKE_DIRECTORY "${working_dir}")
  147. set(RunCMake_TEST_COMMAND_WORKING_DIRECTORY "${working_dir}")
  148. file(REMOVE_RECURSE "${binary_dir}")
  149. run_cmake_with_options(ExplicitDirs-S-arg -S ${source_dir} ${binary_dir})
  150. run_cmake_with_options(ExplicitDirs-S-arg-reverse-order ${binary_dir} -S${source_dir} )
  151. run_cmake_with_options(ExplicitDirs-S-no-arg -S )
  152. run_cmake_with_options(ExplicitDirs-S-no-arg2 -S -T)
  153. run_cmake_with_raw_args(ExplicitDirs-S-no-arg3 [[-S ""]])
  154. run_cmake_with_options(ExplicitDirs-S-B -S ${source_dir} -B ${binary_dir})
  155. run_cmake_with_options(ExplicitDirs-S-B-extra-path -S ${source_dir} -B ${binary_dir} /extra/path/)
  156. run_cmake_with_raw_args(ExplicitDirs-S-B-non-path "-S \"${source_dir}\" -B \"${binary_dir}\" \"\"")
  157. run_cmake_with_raw_args(ExplicitDirs-S-B-non-path2 "-S \"${source_dir}\" \"\" -B \"${binary_dir}\"")
  158. file(REMOVE_RECURSE "${binary_dir}/other_dir")
  159. file(MAKE_DIRECTORY "${binary_dir}/other_dir")
  160. file(WRITE "${binary_dir}/other_dir/CMakeLists.txt" [=[ ]=])
  161. run_cmake_with_options(ExplicitDirs-S-S-same -S ${source_dir} -S ${source_dir} -B ${binary_dir})
  162. run_cmake_with_options(ExplicitDirs-S-S-differs -S ${binary_dir}/other_dir -S ${source_dir} -B ${binary_dir})
  163. run_cmake_with_options(ExplicitDirs-S-implicit-same -S ${source_dir} ${source_dir} -B ${binary_dir})
  164. run_cmake_with_options(ExplicitDirs-S-implicit-differs -S ${binary_dir}/other_dir ${source_dir} -B ${binary_dir})
  165. run_cmake_with_options(ExplicitDirs-S-implicit-differs2 ${binary_dir}/other_dir -S ${source_dir} -B ${binary_dir})
  166. run_cmake_with_options(ExplicitDirs-S-implicit-differs3 ${binary_dir}/other_dir ${source_dir} -B ${binary_dir})
  167. run_cmake_with_options(ExplicitDirs-S-S-Sdiffers -S ${binary_dir}/other_dir1 -S ${binary_dir}/other_dir2 -S ${source_dir} -B ${binary_dir})
  168. run_cmake_with_options(ExplicitDirs-S-S-Simplicit ${binary_dir}/other_dir1 ${binary_dir}/other_dir2 ${source_dir} -B ${binary_dir})
  169. # make sure that -B can explicitly construct build directories
  170. file(REMOVE_RECURSE "${binary_dir}")
  171. run_cmake_with_options(ExplicitDirs-B-arg -B ${binary_dir} ${source_dir})
  172. file(REMOVE_RECURSE "${binary_dir}")
  173. run_cmake_with_options(ExplicitDirs-B-arg-reverse-order ${source_dir} -B${binary_dir})
  174. run_cmake_with_options(ExplicitDirs-B-no-arg -B )
  175. run_cmake_with_options(ExplicitDirs-B-no-arg2 -B -T)
  176. run_cmake_with_raw_args(ExplicitDirs-B-no-arg3 [[-B ""]])
  177. file(REMOVE_RECURSE "${binary_dir}")
  178. run_cmake_with_options(ExplicitDirs-B-S -B${binary_dir} -S${source_dir})
  179. run_cmake_with_options(ExplicitDirs-B-S-extra-path -B${binary_dir} -S${source_dir} /extra/path/)
  180. unset(RunCMake_TEST_COMMAND_WORKING_DIRECTORY)
  181. message("copied to ${RunCMake_TEST_BINARY_DIR}/initial-cache.txt")
  182. file(COPY ${RunCMake_SOURCE_DIR}/C_buildsrcdir/initial-cache.txt DESTINATION ${RunCMake_TEST_BINARY_DIR})
  183. # CMAKE_BINARY_DIR should be determined by -B if specified, and CMAKE_SOURCE_DIR determined by -S if specified.
  184. # Path to initial-cache.txt is relative to the $PWD, which is normally set to ${RunCMake_TEST_BINARY_DIR}.
  185. run_cmake_with_options(ExplicitDirs-C_buildsrcdir -B DummyBuildDir -S ${RunCMake_SOURCE_DIR}/C_buildsrcdir/src -C initial-cache.txt)
  186. # Test that full path works, too.
  187. run_cmake_with_options(ExplicitDirs-C_buildsrcdir -B DummyBuildDir -S ${RunCMake_SOURCE_DIR}/C_buildsrcdir/src -C ${RunCMake_TEST_BINARY_DIR}/initial-cache.txt)
  188. run_cmake_with_options(ExplicitDirs-C_buildsrcdir -B DummyBuildDir ${RunCMake_SOURCE_DIR}/C_buildsrcdir/src -C ${RunCMake_TEST_BINARY_DIR}/initial-cache.txt)
  189. endfunction()
  190. run_ExplicitDirs()
  191. function(run_Fresh)
  192. set(RunCMake_TEST_BINARY_DIR "${RunCMake_BINARY_DIR}/Fresh-build")
  193. set(RunCMake_TEST_VARIANT_DESCRIPTION "-empty")
  194. run_cmake_with_options(Fresh --fresh -DFIRST=ON)
  195. set(RunCMake_TEST_NO_CLEAN 1)
  196. set(RunCMake_TEST_VARIANT_DESCRIPTION "-reconfig")
  197. run_cmake_with_options(Fresh --fresh)
  198. set(RunCMake_TEST_VARIANT_DESCRIPTION "-src-from-cache")
  199. set(RunCMake_TEST_NO_SOURCE_DIR 1)
  200. run_cmake_with_options(Fresh --fresh "${RunCMake_TEST_BINARY_DIR}")
  201. endfunction()
  202. run_Fresh()
  203. function(run_Toolchain)
  204. set(RunCMake_TEST_NO_SOURCE_DIR 1)
  205. set(source_dir ${RunCMake_SOURCE_DIR}/Toolchain)
  206. run_cmake_with_options(toolchain-no-arg -S ${source_dir} --toolchain=)
  207. run_cmake_with_options(toolchain-valid-abs-path -S ${source_dir} --toolchain "${source_dir}/toolchain.cmake")
  208. run_cmake_with_options(toolchain-valid-rel-src-path -S ${source_dir} --toolchain=toolchain.cmake)
  209. set(RunCMake_TEST_NO_CLEAN 1)
  210. set(binary_dir ${RunCMake_BINARY_DIR}/Toolchain-build)
  211. set(RunCMake_TEST_BINARY_DIR "${binary_dir}")
  212. file(REMOVE_RECURSE "${binary_dir}")
  213. # Test that we both search the binary dir for toolchain files, and it takes
  214. # precedence over source dir
  215. file(WRITE ${binary_dir}/toolchain.cmake [=[
  216. set(CMAKE_SYSTEM_NAME Linux)
  217. set(toolchain_file binary_dir)
  218. ]=])
  219. run_cmake_with_options(toolchain-valid-rel-build-path -S ${source_dir} -B ${binary_dir} --toolchain toolchain.cmake)
  220. endfunction()
  221. run_Toolchain()
  222. function(run_BuildDir)
  223. # Use a single build tree for a few tests without cleaning.
  224. set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/BuildDir-build)
  225. set(RunCMake_TEST_NO_CLEAN 1)
  226. file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
  227. file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
  228. run_cmake(BuildDir)
  229. run_cmake_command(BuildDir--build ${CMAKE_COMMAND} -E chdir ..
  230. ${CMAKE_COMMAND} --build BuildDir-build --target CustomTarget)
  231. run_cmake_command(BuildDir--build-multiple-targets ${CMAKE_COMMAND} -E chdir ..
  232. ${CMAKE_COMMAND} --build BuildDir-build -t CustomTarget2 --target CustomTarget3)
  233. run_cmake_command(BuildDir--build-multiple-targets-fail ${CMAKE_COMMAND} -E chdir ..
  234. ${CMAKE_COMMAND} --build BuildDir-build -t CustomTargetFail --target CustomTarget3)
  235. run_cmake_command(BuildDir--build-multiple-targets-jobs ${CMAKE_COMMAND} -E chdir ..
  236. ${CMAKE_COMMAND} --build BuildDir-build --target CustomTarget CustomTarget2 -j2 --target CustomTarget3)
  237. run_cmake_command(BuildDir--build-multiple-targets-with-clean-first ${CMAKE_COMMAND} -E chdir ..
  238. ${CMAKE_COMMAND} --build BuildDir-build --target clean CustomTarget)
  239. run_cmake_command(BuildDir--build-multiple-targets-with-clean-second ${CMAKE_COMMAND} -E chdir ..
  240. ${CMAKE_COMMAND} --build BuildDir-build --target CustomTarget clean)
  241. run_cmake_command(BuildDir--build-jobs-bad-number ${CMAKE_COMMAND} -E chdir ..
  242. ${CMAKE_COMMAND} --build BuildDir-build -j 12ab)
  243. run_cmake_command(BuildDir--build-jobs-good-number ${CMAKE_COMMAND} -E chdir ..
  244. ${CMAKE_COMMAND} --build BuildDir-build -j 2)
  245. run_cmake_command(BuildDir--build-jobs-good-number-trailing--target ${CMAKE_COMMAND} -E chdir ..
  246. ${CMAKE_COMMAND} --build BuildDir-build -j 2 --target CustomTarget)
  247. run_cmake_command(BuildDir--build--parallel-bad-number ${CMAKE_COMMAND} -E chdir ..
  248. ${CMAKE_COMMAND} --build BuildDir-build --parallel 12ab)
  249. run_cmake_command(BuildDir--build--parallel-good-number ${CMAKE_COMMAND} -E chdir ..
  250. ${CMAKE_COMMAND} --build BuildDir-build --parallel 2)
  251. run_cmake_command(BuildDir--build--parallel-good-number-trailing--target ${CMAKE_COMMAND} -E chdir ..
  252. ${CMAKE_COMMAND} --build BuildDir-build --parallel 2 --target CustomTarget)
  253. run_cmake_command(BuildDir--build-jobs-no-space-bad-number ${CMAKE_COMMAND} -E chdir ..
  254. ${CMAKE_COMMAND} --build BuildDir-build -j12ab)
  255. run_cmake_command(BuildDir--build-jobs-no-space-good-number ${CMAKE_COMMAND} -E chdir ..
  256. ${CMAKE_COMMAND} --build BuildDir-build -j2)
  257. run_cmake_command(BuildDir--build-jobs-no-space-good-number-trailing--target ${CMAKE_COMMAND} -E chdir ..
  258. ${CMAKE_COMMAND} --build BuildDir-build -j2 --target CustomTarget)
  259. run_cmake_command(BuildDir--build--parallel-no-space-bad-number ${CMAKE_COMMAND} -E chdir ..
  260. ${CMAKE_COMMAND} --build BuildDir-build --parallel12ab)
  261. run_cmake_command(BuildDir--build--parallel-no-space-good-number ${CMAKE_COMMAND} -E chdir ..
  262. ${CMAKE_COMMAND} --build BuildDir-build --parallel2)
  263. run_cmake_command(BuildDir--build--parallel-no-space-good-number-trailing--target ${CMAKE_COMMAND} -E chdir ..
  264. ${CMAKE_COMMAND} --build BuildDir-build --parallel2 --target CustomTarget)
  265. run_cmake_command(BuildDir--build-jobs-zero ${CMAKE_COMMAND} -E chdir ..
  266. ${CMAKE_COMMAND} --build BuildDir-build -j 0)
  267. run_cmake_command(BuildDir--build--parallel-zero ${CMAKE_COMMAND} -E chdir ..
  268. ${CMAKE_COMMAND} --build BuildDir-build --parallel 0)
  269. run_cmake_command(BuildDir--build-jobs-large ${CMAKE_COMMAND} -E chdir ..
  270. ${CMAKE_COMMAND} --build BuildDir-build -j 4294967293)
  271. run_cmake_command(BuildDir--build--parallel-large ${CMAKE_COMMAND} -E chdir ..
  272. ${CMAKE_COMMAND} --build BuildDir-build --parallel 4294967293)
  273. # No default jobs for FreeBSD build command
  274. if(NOT CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
  275. run_cmake_command(BuildDir--build-jobs-no-number ${CMAKE_COMMAND} -E chdir ..
  276. ${CMAKE_COMMAND} --build BuildDir-build -j)
  277. run_cmake_command(BuildDir--build-jobs-no-number-trailing--target ${CMAKE_COMMAND} -E chdir ..
  278. ${CMAKE_COMMAND} --build BuildDir-build -j --target CustomTarget)
  279. if(RunCMake_GENERATOR MATCHES "Unix Makefiles" OR RunCMake_GENERATOR MATCHES "Ninja")
  280. set(_backup_lang "$ENV{LANG}")
  281. set(_backup_lc_messages "$ENV{LC_MESSAGES}")
  282. set(ENV{LANG} "C")
  283. set(ENV{LC_MESSAGES} "C")
  284. run_cmake_command(BuildDir--build-jobs-no-number-trailing--invalid-target ${CMAKE_COMMAND} -E chdir ..
  285. ${CMAKE_COMMAND} --build BuildDir-build -j --target invalid-target)
  286. set(ENV{LANG} "${_backup_lang}")
  287. set(ENV{LC_MESSAGES} "${_backup_lc_messages}")
  288. endif()
  289. run_cmake_command(BuildDir--build--parallel-no-number ${CMAKE_COMMAND} -E chdir ..
  290. ${CMAKE_COMMAND} --build BuildDir-build --parallel)
  291. run_cmake_command(BuildDir--build--parallel-no-number-trailing--target ${CMAKE_COMMAND} -E chdir ..
  292. ${CMAKE_COMMAND} --build BuildDir-build --parallel --target CustomTarget)
  293. endif()
  294. endfunction()
  295. run_BuildDir()
  296. function(run_EnvironmentGenerator)
  297. set(source_dir ${RunCMake_SOURCE_DIR}/EnvGenerator)
  298. set(ENV{CMAKE_GENERATOR_INSTANCE} "instance")
  299. set(ENV{CMAKE_GENERATOR_PLATFORM} "platform")
  300. set(ENV{CMAKE_GENERATOR_TOOLSET} "toolset")
  301. run_cmake_command(Envgen-warnings ${CMAKE_COMMAND} -G)
  302. unset(ENV{CMAKE_GENERATOR_INSTANCE})
  303. unset(ENV{CMAKE_GENERATOR_PLATFORM})
  304. unset(ENV{CMAKE_GENERATOR_TOOLSET})
  305. # Test CMAKE_GENERATOR without actual configuring
  306. run_cmake_command(Envgen-unset ${CMAKE_COMMAND} -G)
  307. set(ENV{CMAKE_GENERATOR} "Ninja")
  308. run_cmake_command(Envgen-ninja ${CMAKE_COMMAND} -G)
  309. set(ENV{CMAKE_GENERATOR} "NoSuchGenerator")
  310. run_cmake_command(Envgen-bad ${CMAKE_COMMAND} -G)
  311. unset(ENV{CMAKE_GENERATOR})
  312. # Honor CMAKE_GENERATOR env var in --help output
  313. set(ENV{CMAKE_GENERATOR} "Ninja Multi-Config")
  314. run_cmake_command(Envgen-ninja-multi-help ${CMAKE_COMMAND} --help)
  315. set(ENV{CMAKE_GENERATOR} "NoSuchGenerator")
  316. run_cmake_command(Envgen-bad-help ${CMAKE_COMMAND} --help)
  317. unset(ENV{CMAKE_GENERATOR})
  318. if(RunCMake_GENERATOR MATCHES "Visual Studio.*")
  319. set(ENV{CMAKE_GENERATOR} "${RunCMake_GENERATOR}")
  320. run_cmake_command(Envgen ${CMAKE_COMMAND} ${source_dir})
  321. # Toolset is available since VS 2010.
  322. if(RunCMake_GENERATOR MATCHES "Visual Studio [1-9][0-9]")
  323. set(ENV{CMAKE_GENERATOR_TOOLSET} "invalid")
  324. # Envvar shouldn't affect existing build tree
  325. run_cmake_command(Envgen-toolset-existing ${CMAKE_COMMAND} -E chdir ..
  326. ${CMAKE_COMMAND} --build Envgen-build)
  327. run_cmake_command(Envgen-toolset-invalid ${CMAKE_COMMAND} ${source_dir})
  328. # Command line -G implies -T""
  329. run_cmake_command(Envgen-G-implicit-toolset ${CMAKE_COMMAND} -G "${RunCMake_GENERATOR}" ${source_dir})
  330. run_cmake_command(Envgen-T-toolset ${CMAKE_COMMAND} -T "fromcli" ${source_dir})
  331. unset(ENV{CMAKE_GENERATOR_TOOLSET})
  332. endif()
  333. # Platform can be set only if not in generator name.
  334. if(RunCMake_GENERATOR MATCHES "^Visual Studio [0-9]+ [0-9]+$")
  335. set(ENV{CMAKE_GENERATOR_PLATFORM} "invalid")
  336. # Envvar shouldn't affect existing build tree
  337. run_cmake_command(Envgen-platform-existing ${CMAKE_COMMAND} -E chdir ..
  338. ${CMAKE_COMMAND} --build Envgen-build)
  339. if(RunCMake_GENERATOR MATCHES "^Visual Studio 9 ")
  340. set(RunCMake-stderr-file "Envgen-platform-invalid-stderr-vs9.txt")
  341. endif()
  342. run_cmake_command(Envgen-platform-invalid ${CMAKE_COMMAND} ${source_dir})
  343. unset(RunCMake-stderr-file)
  344. # Command line -G implies -A""
  345. run_cmake_command(Envgen-G-implicit-platform ${CMAKE_COMMAND} -G "${RunCMake_GENERATOR}" ${source_dir})
  346. if(RunCMake_GENERATOR MATCHES "^Visual Studio 9 ")
  347. set(RunCMake-stderr-file "Envgen-A-platform-stderr-vs9.txt")
  348. endif()
  349. run_cmake_command(Envgen-A-platform ${CMAKE_COMMAND} -A "fromcli" ${source_dir})
  350. unset(RunCMake-stderr-file)
  351. unset(ENV{CMAKE_GENERATOR_PLATFORM})
  352. endif()
  353. # Instance is available since VS 2017.
  354. if(RunCMake_GENERATOR MATCHES "Visual Studio 1[567].*")
  355. set(ENV{CMAKE_GENERATOR_INSTANCE} "invalid")
  356. # Envvar shouldn't affect existing build tree
  357. run_cmake_command(Envgen-instance-existing ${CMAKE_COMMAND} -E chdir ..
  358. ${CMAKE_COMMAND} --build Envgen-build)
  359. run_cmake_command(Envgen-instance-invalid ${CMAKE_COMMAND} ${source_dir})
  360. unset(ENV{CMAKE_GENERATOR_INSTANCE})
  361. endif()
  362. unset(ENV{CMAKE_GENERATOR})
  363. endif()
  364. endfunction()
  365. run_EnvironmentGenerator()
  366. function(run_EnvironmentExportCompileCommands)
  367. set(RunCMake_TEST_SOURCE_DIR ${RunCMake_SOURCE_DIR}/env-export-compile-commands)
  368. run_cmake(env-export-compile-commands-unset)
  369. set(ENV{CMAKE_EXPORT_COMPILE_COMMANDS} ON)
  370. run_cmake(env-export-compile-commands-set)
  371. set(RunCMake_TEST_OPTIONS -DCMAKE_EXPORT_COMPILE_COMMANDS=OFF)
  372. run_cmake(env-export-compile-commands-override)
  373. unset(ENV{CMAKE_EXPORT_COMPILE_COMMANDS})
  374. endfunction(run_EnvironmentExportCompileCommands)
  375. if(RunCMake_GENERATOR MATCHES "Unix Makefiles" OR RunCMake_GENERATOR MATCHES "Ninja")
  376. run_EnvironmentExportCompileCommands()
  377. endif()
  378. function(run_EnvironmentBuildType)
  379. set(ENV{CMAKE_BUILD_TYPE} "BuildTypeEnv")
  380. run_cmake(EnvBuildType)
  381. run_cmake_with_options(EnvBuildTypeIgnore -DCMAKE_BUILD_TYPE=BuildTypeOpt)
  382. unset(ENV{CMAKE_BUILD_TYPE})
  383. endfunction()
  384. function(run_EnvironmentConfigTypes)
  385. set(ENV{CMAKE_CONFIGURATION_TYPES} "ConfigTypesEnv")
  386. run_cmake(EnvConfigTypes)
  387. run_cmake_with_options(EnvConfigTypesIgnore -DCMAKE_CONFIGURATION_TYPES=ConfigTypesOpt)
  388. unset(ENV{CMAKE_CONFIGURATION_TYPES})
  389. endfunction()
  390. if(RunCMake_GENERATOR MATCHES "Make|^Ninja$")
  391. run_EnvironmentBuildType()
  392. elseif(RunCMake_GENERATOR MATCHES "Ninja Multi-Config|Visual Studio|Xcode")
  393. run_EnvironmentConfigTypes()
  394. endif()
  395. function(run_EnvironmentToolchain)
  396. set(ENV{CMAKE_TOOLCHAIN_FILE} "${RunCMake_SOURCE_DIR}/EnvToolchain-toolchain.cmake")
  397. run_cmake(EnvToolchainAbsolute)
  398. run_cmake_with_options(EnvToolchainIgnore -DCMAKE_TOOLCHAIN_FILE=)
  399. unset(ENV{CMAKE_TOOLCHAIN_FILE})
  400. set(ENV{CMAKE_TOOLCHAIN_FILE} "EnvToolchain-toolchain.cmake")
  401. set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/EnvToolchainRelative-build)
  402. set(RunCMake_TEST_NO_CLEAN 1)
  403. file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
  404. file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
  405. configure_file("${RunCMake_SOURCE_DIR}/EnvToolchain-toolchain.cmake" "${RunCMake_TEST_BINARY_DIR}/EnvToolchain-toolchain.cmake" COPYONLY)
  406. run_cmake(EnvToolchainRelative)
  407. unset(ENV{CMAKE_TOOLCHAIN_FILE})
  408. unset(RunCMake_TEST_NO_CLEAN)
  409. set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/EnvToolchainNone-build)
  410. run_cmake(EnvToolchainNone)
  411. set(RunCMake_TEST_NO_CLEAN 1)
  412. file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}/CMakeFiles")
  413. set(ENV{CMAKE_TOOLCHAIN_FILE} "${RunCMake_SOURCE_DIR}/EnvToolchain-toolchain.cmake")
  414. run_cmake_command(EnvToolchainNoneExisting ${CMAKE_COMMAND} .)
  415. unset(ENV{CMAKE_TOOLCHAIN_FILE})
  416. unset(RunCMake_TEST_NO_CLEAN)
  417. endfunction()
  418. run_EnvironmentToolchain()
  419. function(run_EnvironmentColor)
  420. set(ENV{CMAKE_COLOR_DIAGNOSTICS} "ON")
  421. run_cmake(EnvColorOn)
  422. unset(ENV{CMAKE_COLOR_DIAGNOSTICS})
  423. run_cmake(EnvColorDefault)
  424. endfunction()
  425. run_EnvironmentColor()
  426. if(RunCMake_GENERATOR STREQUAL "Ninja")
  427. # Use a single build tree for a few tests without cleaning.
  428. set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/Build-build)
  429. set(RunCMake_TEST_NO_CLEAN 1)
  430. file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
  431. file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
  432. set(RunCMake_TEST_OPTIONS -DCMAKE_VERBOSE_MAKEFILE=1)
  433. run_cmake(Build)
  434. unset(RunCMake_TEST_OPTIONS)
  435. run_cmake_command(Build-ninja-v ${CMAKE_COMMAND} --build .)
  436. unset(RunCMake_TEST_BINARY_DIR)
  437. unset(RunCMake_TEST_NO_CLEAN)
  438. endif()
  439. run_cmake_command(E_create_symlink-no-arg
  440. ${CMAKE_COMMAND} -E create_symlink
  441. )
  442. run_cmake_command(E_create_symlink-missing-dir
  443. ${CMAKE_COMMAND} -E create_symlink T missing-dir/L
  444. )
  445. # Use a single build tree for a few tests without cleaning.
  446. # These tests are special on Windows since it will only fail if the user
  447. # running the test does not have the priveldge to create symlinks. If this
  448. # happens we clear the msg in the -check.cmake and say that the test passes
  449. set(RunCMake_DEFAULT_stderr "(A required privilege is not held by the client)?")
  450. set(RunCMake_TEST_BINARY_DIR
  451. ${RunCMake_BINARY_DIR}/E_create_symlink-broken-build)
  452. set(RunCMake_TEST_NO_CLEAN 1)
  453. file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
  454. run_cmake_command(E_create_symlink-broken-create
  455. ${CMAKE_COMMAND} -E create_symlink T L
  456. )
  457. run_cmake_command(E_create_symlink-broken-replace
  458. ${CMAKE_COMMAND} -E create_symlink . L
  459. )
  460. unset(RunCMake_TEST_BINARY_DIR)
  461. unset(RunCMake_TEST_NO_CLEAN)
  462. unset(RunCMake_DEFAULT_stderr)
  463. run_cmake_command(E_create_symlink-no-replace-dir
  464. ${CMAKE_COMMAND} -E create_symlink T .
  465. )
  466. #create hard link tests
  467. run_cmake_command(E_create_hardlink-no-arg
  468. ${CMAKE_COMMAND} -E create_hardlink
  469. )
  470. set(dir ${RunCMake_BINARY_DIR}/hardlink_tests)
  471. file(REMOVE_RECURSE "${dir}")
  472. file(MAKE_DIRECTORY ${dir})
  473. run_cmake_command(E_create_hardlink-non-existent-source
  474. ${CMAKE_COMMAND} -E create_hardlink ${dir}/I_dont_exist ${dir}/link
  475. )
  476. file(TOUCH ${dir}/1)
  477. run_cmake_command(E_create_hardlink-ok
  478. ${CMAKE_COMMAND} -E create_hardlink ${dir}/1 ${dir}/1-link
  479. )
  480. run_cmake_command(E_create_hardlink-no-directory
  481. ${CMAKE_COMMAND} -E create_hardlink ${dir}/1 ${dir}/a/1-link
  482. )
  483. #On Windows, if the user does not have sufficient privileges
  484. #don't fail this test
  485. set(RunCMake_DEFAULT_stderr "(A required privilege is not held by the client)?")
  486. run_cmake_command(E_create_hardlink-unresolved-symlink-prereq
  487. ${CMAKE_COMMAND} -E create_symlink ${dir}/1 ${dir}/1-symlink
  488. )
  489. file(REMOVE ${dir}/1)
  490. run_cmake_command(E_create_hardlink-unresolved-symlink
  491. ${CMAKE_COMMAND} -E create_hardlink ${dir}/1-symlink ${dir}/1s-link
  492. )
  493. unset(RunCMake_DEFAULT_stderr)
  494. set(in ${RunCMake_SOURCE_DIR}/copy_input)
  495. set(out ${RunCMake_BINARY_DIR}/copy_output)
  496. file(REMOVE_RECURSE "${out}")
  497. file(MAKE_DIRECTORY ${out})
  498. run_cmake_command(E_copy-one-source-file
  499. ${CMAKE_COMMAND} -E copy ${out}/f1.txt)
  500. run_cmake_command(E_copy-one-source-directory-target-is-directory
  501. ${CMAKE_COMMAND} -E copy ${in}/f1.txt ${out})
  502. run_cmake_command(E_copy-three-source-files-target-is-directory
  503. ${CMAKE_COMMAND} -E copy ${in}/f1.txt ${in}/f2.txt ${in}/f3.txt ${out})
  504. run_cmake_command(E_copy-three-source-files-target-is-file
  505. ${CMAKE_COMMAND} -E copy ${in}/f1.txt ${in}/f2.txt ${in}/f3.txt ${out}/f1.txt)
  506. run_cmake_command(E_copy-two-good-and-one-bad-source-files-target-is-directory
  507. ${CMAKE_COMMAND} -E copy ${in}/f1.txt ${in}/not_existing_file.bad ${in}/f3.txt ${out})
  508. run_cmake_command(E_copy_if_different-one-source-directory-target-is-directory
  509. ${CMAKE_COMMAND} -E copy_if_different ${in}/f1.txt ${out})
  510. run_cmake_command(E_copy_if_different-three-source-files-target-is-directory
  511. ${CMAKE_COMMAND} -E copy_if_different ${in}/f1.txt ${in}/f2.txt ${in}/f3.txt ${out})
  512. run_cmake_command(E_copy_if_different-three-source-files-target-is-file
  513. ${CMAKE_COMMAND} -E copy_if_different ${in}/f1.txt ${in}/f2.txt ${in}/f3.txt ${out}/f1.txt)
  514. unset(in)
  515. unset(out)
  516. set(in ${RunCMake_SOURCE_DIR}/copy_input)
  517. set(out ${RunCMake_BINARY_DIR}/copy_directory_output)
  518. set(outfile ${out}/file_for_test.txt)
  519. file(REMOVE_RECURSE "${out}")
  520. file(MAKE_DIRECTORY ${out})
  521. file(WRITE ${outfile} "")
  522. run_cmake_command(E_copy_directory-three-source-files-target-is-directory
  523. ${CMAKE_COMMAND} -E copy_directory ${in}/d1 ${in}/d2 ${in}/d3 ${out})
  524. run_cmake_command(E_copy_directory-three-source-files-target-is-file
  525. ${CMAKE_COMMAND} -E copy_directory ${in}/d1 ${in}/d2 ${in}/d3 ${outfile})
  526. run_cmake_command(E_copy_directory-three-source-files-target-is-not-exist
  527. ${CMAKE_COMMAND} -E copy_directory ${in}/d1 ${in}/d2 ${in}/d3 ${out}/not_existing_directory)
  528. unset(in)
  529. unset(out)
  530. unset(outfile)
  531. set(out ${RunCMake_BINARY_DIR}/make_directory_output)
  532. set(outfile ${out}/file_for_test.txt)
  533. file(REMOVE_RECURSE "${out}")
  534. file(MAKE_DIRECTORY ${out})
  535. file(WRITE ${outfile} "")
  536. run_cmake_command(E_make_directory-three-directories
  537. ${CMAKE_COMMAND} -E make_directory ${out}/d1 ${out}/d2 ${out}/d2)
  538. run_cmake_command(E_remove_directory-three-directories
  539. ${CMAKE_COMMAND} -E remove_directory ${out}/d1 ${out}/d2 ${out}/d2)
  540. run_cmake_command(E_make_directory-directory-with-parent
  541. ${CMAKE_COMMAND} -E make_directory ${out}/parent/child)
  542. run_cmake_command(E_remove_directory-directory-with-parent
  543. ${CMAKE_COMMAND} -E remove_directory ${out}/parent)
  544. run_cmake_command(E_make_directory-two-directories-and-file
  545. ${CMAKE_COMMAND} -E make_directory ${out}/d1 ${out}/d2 ${outfile})
  546. run_cmake_command(E_remove_directory-two-directories-and-file
  547. ${CMAKE_COMMAND} -E remove_directory ${out}/d1 ${out}/d2 ${outfile})
  548. if(UNIX)
  549. file(MAKE_DIRECTORY ${out}/dir)
  550. file(CREATE_LINK ${out}/dir ${out}/link_dir SYMBOLIC)
  551. file(CREATE_LINK ${outfile} ${out}/link_file_for_test.txt SYMBOLIC)
  552. run_cmake_command(E_remove_directory-symlink-dir
  553. ${CMAKE_COMMAND} -E remove_directory ${out}/link_dir)
  554. run_cmake_command(E_remove_directory-symlink-file
  555. ${CMAKE_COMMAND} -E remove_directory ${out}/link_file_for_test.txt)
  556. endif()
  557. unset(out)
  558. unset(outfile)
  559. set(out ${RunCMake_BINARY_DIR}/rm_tests)
  560. file(REMOVE_RECURSE "${out}")
  561. file(MAKE_DIRECTORY ${out})
  562. file(TOUCH ${out}/existing.txt)
  563. run_cmake_command(E_rm_file_force_existing
  564. ${CMAKE_COMMAND} -E rm -f ${out}/existing.txt)
  565. file(TOUCH ${out}/existing.txt)
  566. run_cmake_command(E_rm_file_non_force_existing
  567. ${CMAKE_COMMAND} -E rm ${out}/existing.txt)
  568. run_cmake_command(E_rm_file_force_non_existing
  569. ${CMAKE_COMMAND} -E rm -f ${out}/not_existing.txt)
  570. run_cmake_command(E_rm_file_non_force_non_existing
  571. ${CMAKE_COMMAND} -E rm ${out}/not_existing.txt)
  572. file(TOUCH ${out}/existing.txt)
  573. run_cmake_command(E_rm_file_recursive_existing
  574. ${CMAKE_COMMAND} -E rm -r ${out}/existing.txt)
  575. run_cmake_command(E_rm_file_recursive_non_existing
  576. ${CMAKE_COMMAND} -E rm -r ${out}/not_existing.txt)
  577. file(MAKE_DIRECTORY ${out}/d1 ${out}/d2)
  578. run_cmake_command(E_rm_non_recursive_directory-two-directories
  579. ${CMAKE_COMMAND} -E rm ${out}/d1 ${out}/d2)
  580. run_cmake_command(E_rm_recursive_directory-two-directories
  581. ${CMAKE_COMMAND} -E rm -R ${out}/d1 ${out}/d2)
  582. run_cmake_command(E_rm_no_file_specified
  583. ${CMAKE_COMMAND} -E rm -rf)
  584. run_cmake_command(E_rm_empty_file_specified
  585. ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_rm_empty_file_specified.cmake)
  586. run_cmake_command(E_rm_bad_argument
  587. ${CMAKE_COMMAND} -E rm -rd ${out}/d1 ${out}/d2)
  588. file(MAKE_DIRECTORY ${out}/d1 ${out}/d2)
  589. file(WRITE ${out}/test.txt "")
  590. run_cmake_command(E_rm_force_recursive_directory_with_files
  591. ${CMAKE_COMMAND} -E rm -rf ${out}/)
  592. run_cmake_command(E_rm_force_recursive_non_existing_file
  593. ${CMAKE_COMMAND} -E rm -Rf ${out}/test.txt)
  594. if(NOT WIN32 AND NOT CYGWIN)
  595. file(MAKE_DIRECTORY ${out})
  596. file(TOUCH ${out}/existing.txt)
  597. file(MAKE_DIRECTORY ${out}/dir)
  598. file(TOUCH ${out}/dir/existing.txt) # add a file in the folder
  599. file(CREATE_LINK ${out}/dir ${out}/link_dir SYMBOLIC)
  600. file(CREATE_LINK ${out}/existing.txt ${out}/existing_file_link.txt SYMBOLIC)
  601. file(CREATE_LINK ${out}/non_existing.txt ${out}/non_existing_file_link.txt SYMBOLIC)
  602. run_cmake_command(E_rm_file_link_existing
  603. ${CMAKE_COMMAND} -E rm ${out}/existing_file_link.txt)
  604. run_cmake_command(E_rm_directory_link_existing
  605. ${CMAKE_COMMAND} -E rm ${out}/link_dir)
  606. run_cmake_command(E_rm_file_link_non_existing
  607. ${CMAKE_COMMAND} -E rm ${out}/non_existing_file_link.txt)
  608. file(CREATE_LINK ${out}/dir ${out}/link_dir SYMBOLIC)
  609. file(CREATE_LINK ${out}/existing.txt ${out}/existing_file_link.txt SYMBOLIC)
  610. file(CREATE_LINK ${out}/non_existing.txt ${out}/non_existing_file_link.txt SYMBOLIC)
  611. run_cmake_command(E_rm_recursive_file_link_existing
  612. ${CMAKE_COMMAND} -E rm -R ${out}/existing_file_link.txt)
  613. run_cmake_command(E_rm_recursive_directory_link_existing
  614. ${CMAKE_COMMAND} -E rm -r ${out}/link_dir)
  615. run_cmake_command(E_rm_recursive_file_link_non_existing
  616. ${CMAKE_COMMAND} -E rm -r ${out}/non_existing_file_link.txt)
  617. endif()
  618. unset(out)
  619. # cat tests
  620. set(out ${RunCMake_BINARY_DIR}/cat_tests)
  621. file(REMOVE_RECURSE "${out}")
  622. file(MAKE_DIRECTORY ${out})
  623. run_cmake_command(E_cat_non_existing_file
  624. ${CMAKE_COMMAND} -E cat ${out}/non-existing-file.txt)
  625. if(UNIX AND NOT MSYS)
  626. # test non readable file only if not root
  627. execute_process(
  628. COMMAND id -u $ENV{USER}
  629. OUTPUT_VARIABLE uid
  630. OUTPUT_STRIP_TRAILING_WHITESPACE)
  631. if(NOT "${uid}" STREQUAL "0")
  632. # Create non readable file
  633. set(inside_folder "${out}/in")
  634. file(MAKE_DIRECTORY ${inside_folder})
  635. file(WRITE "${inside_folder}/non_readable_file.txt" "first file to append\n")
  636. file(COPY "${inside_folder}/non_readable_file.txt" DESTINATION "${out}" FILE_PERMISSIONS OWNER_WRITE)
  637. run_cmake_command(E_cat_non_readable_file
  638. ${CMAKE_COMMAND} -E cat "${out}/non_readable_file.txt")
  639. endif()
  640. endif()
  641. run_cmake_command(E_cat_option_not_handled
  642. ${CMAKE_COMMAND} -E cat -f)
  643. run_cmake_command(E_cat_directory
  644. ${CMAKE_COMMAND} -E cat ${out})
  645. file(WRITE "${out}/first_file.txt" "first file to append\n")
  646. file(WRITE "${out}/second_file.txt" "second file to append\n")
  647. file(WRITE "${out}/empty_file.txt" "")
  648. file(WRITE "${out}/unicode_file.txt" "àéùç - 한국어") # Korean in Korean
  649. run_cmake_command(E_cat_good_cat
  650. ${CMAKE_COMMAND} -E cat "${out}/first_file.txt" "${out}/second_file.txt" "${out}/empty_file.txt" "${out}/unicode_file.txt")
  651. run_cmake_command(E_cat_good_binary_cat
  652. ${CMAKE_COMMAND} -E cat "${RunCMake_SOURCE_DIR}/E_cat_binary_files/binary.obj" "${RunCMake_SOURCE_DIR}/E_cat_binary_files/binary.obj")
  653. # To test whether the double dash (--) works, we need to control the working directory
  654. # in order to be able to pass a relative path that starts with a dash.
  655. file(WRITE "${out}/-file-starting-with-dash.txt" "file starting with dash, not an option\n")
  656. set(RunCMake_TEST_COMMAND_WORKING_DIRECTORY "${out}")
  657. run_cmake_command(E_cat-with-double-dash ${CMAKE_COMMAND} -E cat -- "-file-starting-with-dash.txt")
  658. run_cmake_command(E_cat-without-double-dash ${CMAKE_COMMAND} -E cat "-file-starting-with-dash.txt")
  659. unset(RunCMake_TEST_COMMAND_WORKING_DIRECTORY)
  660. unset(out)
  661. # Unset environment variables that are used for testing cmake -E
  662. unset(ENV{TEST_ENV})
  663. unset(ENV{TEST_ENV_EXPECTED})
  664. run_cmake_command(E_env-no-command0 ${CMAKE_COMMAND} -E env)
  665. run_cmake_command(E_env-no-command1 ${CMAKE_COMMAND} -E env TEST_ENV=1)
  666. run_cmake_command(E_env-bad-arg1 ${CMAKE_COMMAND} -E env -bad-arg1)
  667. run_cmake_command(E_env-set ${CMAKE_COMMAND} -E env TEST_ENV=1 ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-set.cmake)
  668. run_cmake_command(E_env-unset ${CMAKE_COMMAND} -E env TEST_ENV=1 ${CMAKE_COMMAND} -E env --unset=TEST_ENV ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-unset.cmake)
  669. # To test whether the double dash (--) works for the env command, we need a command that e.g. contains an equals sign (=)
  670. # and would normally be interpreted as an NAME=VALUE environment variable.
  671. # Ensuring such a command is done by simply copying the trivial exit_code executable with a different name.
  672. cmake_path(GET EXIT_CODE_EXE FILENAME exit_code)
  673. file(COPY_FILE "${EXIT_CODE_EXE}" "${RunCMake_BINARY_DIR}/env=${exit_code}")
  674. run_cmake_command(E_env-with-double-dash ${CMAKE_COMMAND} -E env TEST_ENV=1 -- "${RunCMake_BINARY_DIR}/env=${exit_code}" zero_exit)
  675. run_cmake_command(E_env-without-double-dash ${CMAKE_COMMAND} -E env TEST_ENV=1 "${RunCMake_BINARY_DIR}/env=${exit_code}" zero_exit)
  676. ## Tests of env --modify
  677. # Repeat the same tests as above
  678. run_cmake_command(E_env_modify-set ${CMAKE_COMMAND} -E env --modify TEST_ENV=set:1 ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-set.cmake)
  679. run_cmake_command(E_env_modify-unset ${CMAKE_COMMAND} -E env --modify TEST_ENV=set:1 ${CMAKE_COMMAND} -E env --modify TEST_ENV=unset: ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-unset.cmake)
  680. run_cmake_command(E_env_modify-with-double-dash ${CMAKE_COMMAND} -E env --modify TEST_ENV=set:1 -- "${RunCMake_BINARY_DIR}/env=${exit_code}" zero_exit)
  681. run_cmake_command(E_env_modify-without-double-dash ${CMAKE_COMMAND} -E env --modify TEST_ENV=set:1 "${RunCMake_BINARY_DIR}/env=${exit_code}" zero_exit)
  682. # Test environment modification commands
  683. run_cmake_command(E_env_modify-reset
  684. ${CMAKE_COMMAND} -E env TEST_ENV=expected
  685. ${CMAKE_COMMAND} -E env TEST_ENV_EXPECTED=expected TEST_ENV=bad_value --modify TEST_ENV=reset:
  686. ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-equal.cmake)
  687. run_cmake_command(E_env_modify-reset-to-unset
  688. ${CMAKE_COMMAND} -E env --unset=TEST_ENV --unset=TEST_ENV_EXPECTED
  689. ${CMAKE_COMMAND} -E env TEST_ENV=bad_value --modify TEST_ENV=reset:
  690. ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-equal.cmake)
  691. run_cmake_command(E_env_modify-string
  692. ${CMAKE_COMMAND} -E env TEST_ENV_EXPECTED=expected
  693. --modify TEST_ENV=unset:
  694. --modify TEST_ENV=string_append:ect
  695. --modify TEST_ENV=string_prepend:exp
  696. --modify TEST_ENV=string_append:ed
  697. ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-equal.cmake)
  698. if (WIN32)
  699. set(SEP "\\;")
  700. else ()
  701. set(SEP ":")
  702. endif ()
  703. run_cmake_command(E_env_modify-path_list
  704. ${CMAKE_COMMAND} -E env "TEST_ENV_EXPECTED=exp${SEP}ect${SEP}ed"
  705. --modify TEST_ENV=unset:
  706. --modify TEST_ENV=path_list_append:ect
  707. --modify TEST_ENV=path_list_prepend:exp
  708. --modify TEST_ENV=path_list_append:ed
  709. ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-equal.cmake)
  710. run_cmake_command(E_env_modify-cmake_list
  711. ${CMAKE_COMMAND} -E env "TEST_ENV_EXPECTED=exp\\;ect\\;ed"
  712. --modify TEST_ENV=unset:
  713. --modify TEST_ENV=cmake_list_append:ect
  714. --modify TEST_ENV=cmake_list_prepend:exp
  715. --modify TEST_ENV=cmake_list_append:ed
  716. ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR}/E_env-equal.cmake)
  717. run_cmake_command(E_env_modify-bad-operation ${CMAKE_COMMAND} -E env --modify TEST_ENV=unknown:)
  718. run_cmake_command(E_md5sum-dir ${CMAKE_COMMAND} -E md5sum .)
  719. run_cmake_command(E_sha1sum-dir ${CMAKE_COMMAND} -E sha1sum .)
  720. run_cmake_command(E_sha224sum-dir ${CMAKE_COMMAND} -E sha224sum .)
  721. run_cmake_command(E_sha256sum-dir ${CMAKE_COMMAND} -E sha256sum .)
  722. run_cmake_command(E_sha384sum-dir ${CMAKE_COMMAND} -E sha384sum .)
  723. run_cmake_command(E_sha512sum-dir ${CMAKE_COMMAND} -E sha512sum .)
  724. run_cmake_command(E_md5sum-no-file ${CMAKE_COMMAND} -E md5sum nonexisting)
  725. run_cmake_command(E_sha1sum-no-file ${CMAKE_COMMAND} -E sha1sum nonexisting)
  726. run_cmake_command(E_sha224sum-no-file ${CMAKE_COMMAND} -E sha224sum nonexisting)
  727. run_cmake_command(E_sha256sum-no-file ${CMAKE_COMMAND} -E sha256sum nonexisting)
  728. run_cmake_command(E_sha384sum-no-file ${CMAKE_COMMAND} -E sha384sum nonexisting)
  729. run_cmake_command(E_sha512sum-no-file ${CMAKE_COMMAND} -E sha512sum nonexisting)
  730. file(WRITE "${RunCMake_BINARY_DIR}/dummy" "dummy")
  731. run_cmake_command(E_md5sum ${CMAKE_COMMAND} -E md5sum ../dummy)
  732. run_cmake_command(E_md5sum-mixed ${CMAKE_COMMAND} -E md5sum . ../dummy nonexisting)
  733. run_cmake_command(E_sha1sum ${CMAKE_COMMAND} -E sha1sum ../dummy)
  734. run_cmake_command(E_sha224sum ${CMAKE_COMMAND} -E sha224sum ../dummy)
  735. run_cmake_command(E_sha256sum ${CMAKE_COMMAND} -E sha256sum ../dummy)
  736. run_cmake_command(E_sha384sum ${CMAKE_COMMAND} -E sha384sum ../dummy)
  737. run_cmake_command(E_sha512sum ${CMAKE_COMMAND} -E sha512sum ../dummy)
  738. file(REMOVE "${RunCMake_BINARY_DIR}/dummy")
  739. set(RunCMake_DEFAULT_stderr ".")
  740. run_cmake_command(E_sleep-no-args ${CMAKE_COMMAND} -E sleep)
  741. unset(RunCMake_DEFAULT_stderr)
  742. run_cmake_command(E_sleep-bad-arg1 ${CMAKE_COMMAND} -E sleep x)
  743. run_cmake_command(E_sleep-bad-arg2 ${CMAKE_COMMAND} -E sleep 1 -1)
  744. run_cmake_command(E_sleep-one-tenth ${CMAKE_COMMAND} -E sleep 0.1)
  745. run_cmake_command(P_directory ${CMAKE_COMMAND} -P ${RunCMake_SOURCE_DIR})
  746. run_cmake_command(P_working-dir ${CMAKE_COMMAND} -DEXPECTED_WORKING_DIR=${RunCMake_BINARY_DIR}/P_working-dir-build -P ${RunCMake_SOURCE_DIR}/P_working-dir.cmake)
  747. # Documented to return the same result as above even if -S and -B are set to something else.
  748. # Tests the values of CMAKE_BINARY_DIR CMAKE_CURRENT_BINARY_DIR CMAKE_SOURCE_DIR CMAKE_CURRENT_SOURCE_DIR.
  749. run_cmake_command(P_working-dir ${CMAKE_COMMAND} -DEXPECTED_WORKING_DIR=${RunCMake_BINARY_DIR}/P_working-dir-build -P ${RunCMake_SOURCE_DIR}/P_working-dir.cmake -S something_else -B something_else_1)
  750. # Place an initial cache where C_basic will find it when passed the relative path "..".
  751. file(COPY ${RunCMake_SOURCE_DIR}/C_basic_initial-cache.txt DESTINATION ${RunCMake_BINARY_DIR})
  752. run_cmake_with_options(C_basic -C ../C_basic_initial-cache.txt)
  753. run_cmake_with_options(C_basic_fullpath -C ${RunCMake_BINARY_DIR}/C_basic_initial-cache.txt)
  754. set(RunCMake_TEST_OPTIONS
  755. "-DFOO=-DBAR:BOOL=BAZ")
  756. run_cmake(D_nested_cache)
  757. set(RunCMake_TEST_OPTIONS
  758. "-DFOO:STRING=-DBAR:BOOL=BAZ")
  759. run_cmake(D_typed_nested_cache)
  760. set(RunCMake_TEST_OPTIONS -Wno-dev)
  761. run_cmake(Wno-dev)
  762. unset(RunCMake_TEST_OPTIONS)
  763. set(RunCMake_TEST_OPTIONS -Wdev)
  764. run_cmake(Wdev)
  765. unset(RunCMake_TEST_OPTIONS)
  766. set(RunCMake_TEST_OPTIONS -Werror=dev)
  767. run_cmake(Werror_dev)
  768. unset(RunCMake_TEST_OPTIONS)
  769. set(RunCMake_TEST_OPTIONS -Wno-error=dev)
  770. run_cmake(Wno-error_deprecated)
  771. unset(RunCMake_TEST_OPTIONS)
  772. # -Wdev should not override deprecated options if specified
  773. set(RunCMake_TEST_OPTIONS -Wdev -Wno-deprecated)
  774. run_cmake(Wno-deprecated)
  775. unset(RunCMake_TEST_OPTIONS)
  776. set(RunCMake_TEST_OPTIONS -Wno-deprecated -Wdev)
  777. run_cmake(Wno-deprecated)
  778. unset(RunCMake_TEST_OPTIONS)
  779. # -Wdev should enable deprecated warnings as well
  780. set(RunCMake_TEST_OPTIONS -Wdev)
  781. run_cmake(Wdeprecated)
  782. unset(RunCMake_TEST_OPTIONS)
  783. # -Werror=dev should enable deprecated errors as well
  784. set(RunCMake_TEST_OPTIONS -Werror=dev)
  785. run_cmake(Werror_deprecated)
  786. unset(RunCMake_TEST_OPTIONS)
  787. set(RunCMake_TEST_OPTIONS -Wdeprecated)
  788. run_cmake(Wdeprecated)
  789. unset(RunCMake_TEST_OPTIONS)
  790. set(RunCMake_TEST_OPTIONS -Wno-deprecated)
  791. run_cmake(Wno-deprecated)
  792. unset(RunCMake_TEST_OPTIONS)
  793. set(RunCMake_TEST_OPTIONS -Werror=deprecated)
  794. run_cmake(Werror_deprecated)
  795. unset(RunCMake_TEST_OPTIONS)
  796. set(RunCMake_TEST_OPTIONS -Wno-error=deprecated)
  797. run_cmake(Wno-error_deprecated)
  798. unset(RunCMake_TEST_OPTIONS)
  799. set(RunCMake_TEST_OPTIONS -Werror=deprecated -Wno-error=deprecated)
  800. run_cmake(Wno-error_deprecated)
  801. unset(RunCMake_TEST_OPTIONS)
  802. # Dev warnings should be on by default
  803. run_cmake(Wdev)
  804. # Deprecated warnings should be on by default
  805. run_cmake(Wdeprecated)
  806. # Conflicting -W options should honor the last value
  807. set(RunCMake_TEST_OPTIONS -Wno-dev -Wdev)
  808. run_cmake(Wdev)
  809. unset(RunCMake_TEST_OPTIONS)
  810. set(RunCMake_TEST_OPTIONS -Wdev -Wno-dev)
  811. run_cmake(Wno-dev)
  812. unset(RunCMake_TEST_OPTIONS)
  813. run_cmake_command(W_bad-arg1 ${CMAKE_COMMAND} -B DummyBuildDir -W)
  814. run_cmake_command(W_bad-arg2 ${CMAKE_COMMAND} -B DummyBuildDir -Wno-)
  815. run_cmake_command(W_bad-arg3 ${CMAKE_COMMAND} -B DummyBuildDir -Werror=)
  816. set(RunCMake_TEST_OPTIONS --debug-output)
  817. run_cmake(debug-output)
  818. unset(RunCMake_TEST_OPTIONS)
  819. set(RunCMake_TEST_OPTIONS --trace)
  820. run_cmake(trace)
  821. run_cmake(trace-try_compile)
  822. unset(RunCMake_TEST_OPTIONS)
  823. set(RunCMake_TEST_OPTIONS --trace-expand)
  824. run_cmake(trace-expand)
  825. unset(RunCMake_TEST_OPTIONS)
  826. set(RunCMake_TEST_OPTIONS --trace-expand --warn-uninitialized)
  827. run_cmake(trace-expand-warn-uninitialized)
  828. unset(RunCMake_TEST_OPTIONS)
  829. set(RunCMake_TEST_OPTIONS --trace-redirect=${RunCMake_BINARY_DIR}/redirected.trace)
  830. run_cmake(trace-redirect)
  831. run_cmake(trace-try_compile-redirect)
  832. unset(RunCMake_TEST_OPTIONS)
  833. set(RunCMake_TEST_OPTIONS --trace-redirect=/no/such/file.txt)
  834. run_cmake(trace-redirect-nofile)
  835. unset(RunCMake_TEST_OPTIONS)
  836. set(RunCMake_TEST_OPTIONS --trace --trace-format=json-v1 --trace-redirect=${RunCMake_BINARY_DIR}/json-v1.trace)
  837. run_cmake(trace-json-v1)
  838. unset(RunCMake_TEST_OPTIONS)
  839. set(RunCMake_TEST_OPTIONS --trace-expand --trace-format=json-v1 --trace-redirect=${RunCMake_BINARY_DIR}/json-v1-expand.trace)
  840. run_cmake(trace-json-v1-expand)
  841. unset(RunCMake_TEST_OPTIONS)
  842. set(RunCMake_TEST_OPTIONS -Wno-deprecated --warn-uninitialized)
  843. run_cmake(warn-uninitialized)
  844. unset(RunCMake_TEST_OPTIONS)
  845. set(RunCMake_TEST_OPTIONS --trace-source=trace-only-this-file.cmake)
  846. run_cmake(trace-source)
  847. unset(RunCMake_TEST_OPTIONS)
  848. set(RunCMake_TEST_OPTIONS --debug-trycompile)
  849. run_cmake(debug-trycompile)
  850. unset(RunCMake_TEST_OPTIONS)
  851. run_cmake(trycompile-clean)
  852. function(run_cmake_depends)
  853. set(RunCMake_TEST_SOURCE_DIR "${RunCMake_SOURCE_DIR}/cmake_depends")
  854. set(RunCMake_TEST_BINARY_DIR "${RunCMake_BINARY_DIR}/cmake_depends-build")
  855. set(RunCMake_TEST_NO_CLEAN 1)
  856. file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
  857. file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
  858. file(WRITE "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/DepTarget.dir/DependInfo.cmake" "
  859. set(CMAKE_DEPENDS_LANGUAGES \"C\")
  860. set(CMAKE_DEPENDS_CHECK_C
  861. \"${RunCMake_TEST_SOURCE_DIR}/test.c\"
  862. \"${RunCMake_TEST_BINARY_DIR}/CMakeFiles/DepTarget.dir/test.c.o\"
  863. )
  864. ")
  865. file(WRITE "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/CMakeDirectoryInformation.cmake" "
  866. set(CMAKE_RELATIVE_PATH_TOP_SOURCE \"${RunCMake_TEST_SOURCE_DIR}\")
  867. set(CMAKE_RELATIVE_PATH_TOP_BINARY \"${RunCMake_TEST_BINARY_DIR}\")
  868. ")
  869. run_cmake_command(cmake_depends ${CMAKE_COMMAND} -E env VERBOSE=1
  870. ${CMAKE_COMMAND} -E cmake_depends "Unix Makefiles"
  871. ${RunCMake_TEST_SOURCE_DIR} ${RunCMake_TEST_SOURCE_DIR}
  872. ${RunCMake_TEST_BINARY_DIR} ${RunCMake_TEST_BINARY_DIR}
  873. ${RunCMake_TEST_BINARY_DIR}/CMakeFiles/DepTarget.dir/DependInfo.cmake
  874. )
  875. endfunction()
  876. run_cmake_depends()
  877. function(reject_fifo)
  878. find_program(BASH_EXECUTABLE bash)
  879. if(BASH_EXECUTABLE)
  880. set(BASH_COMMAND_ARGUMENT "'${CMAKE_COMMAND}' -P <(echo 'return()')")
  881. run_cmake_command(reject_fifo ${BASH_EXECUTABLE} -c ${BASH_COMMAND_ARGUMENT})
  882. endif()
  883. endfunction()
  884. if(CMAKE_HOST_UNIX AND NOT CMAKE_SYSTEM_NAME STREQUAL "CYGWIN" AND NOT CMAKE_SYSTEM_NAME STREQUAL "MSYS")
  885. reject_fifo()
  886. run_cmake_command(closed_stdin sh -c "\"${CMAKE_COMMAND}\" --version <&-")
  887. run_cmake_command(closed_stdout sh -c "\"${CMAKE_COMMAND}\" --version >&-")
  888. run_cmake_command(closed_stderr sh -c "\"${CMAKE_COMMAND}\" --version 2>&-")
  889. run_cmake_command(closed_stdall sh -c "\"${CMAKE_COMMAND}\" --version <&- >&- 2>&-")
  890. endif()
  891. function(run_llvm_rc)
  892. set(RunCMake_TEST_BINARY_DIR "${RunCMake_BINARY_DIR}/llvm_rc-build")
  893. set(RunCMake_TEST_NO_CLEAN 1)
  894. file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
  895. file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
  896. run_cmake_command(llvm_rc_no_args ${CMAKE_COMMAND} -E cmake_llvm_rc)
  897. run_cmake_command(llvm_rc_no_-- ${CMAKE_COMMAND} -E cmake_llvm_rc ${RunCMake_TEST_BINARY_DIR}/source_file test.tmp ${CMAKE_COMMAND} -E echo "This is a test")
  898. run_cmake_command(llvm_rc_empty_preprocessor ${CMAKE_COMMAND} -E cmake_llvm_rc ${RunCMake_TEST_BINARY_DIR}/source_file test.tmp ++ ${CMAKE_COMMAND} -E echo "This is a test")
  899. run_cmake_command(llvm_rc_failing_first_command ${CMAKE_COMMAND} -E cmake_llvm_rc ${RunCMake_TEST_BINARY_DIR}/source_file test.tmp ${CMAKE_COMMAND} -P FailedProgram.cmake ++ ${CMAKE_COMMAND} -E echo "This is a test")
  900. run_cmake_command(llvm_rc_failing_second_command ${CMAKE_COMMAND} -E cmake_llvm_rc ${RunCMake_TEST_BINARY_DIR}/source_file test.tmp ${CMAKE_COMMAND} -E echo "This is a test" ++ ${CMAKE_COMMAND} -P FailedProgram.cmake )
  901. if(EXISTS ${RunCMake_TEST_BINARY_DIR}/test.tmp)
  902. message(SEND_ERROR "${test} - FAILED:\n"
  903. "test.tmp was not deleted")
  904. endif()
  905. file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}/ExpandSourceDir")
  906. run_cmake_command(llvm_rc_full_run ${CMAKE_COMMAND} -E cmake_llvm_rc ${RunCMake_TEST_BINARY_DIR}/ExpandSourceDir/source_file test.tmp ${CMAKE_COMMAND} -E echo "This is a test" ++ ${LLVM_RC} -bad /FO SOURCE_DIR/llvmrc.result test.tmp )
  907. if(EXISTS ${RunCMake_TEST_BINARY_DIR}/ExpandSourceDir/test.tmp)
  908. message(SEND_ERROR "${test} - FAILED:\n"
  909. "test.tmp was not deleted")
  910. endif()
  911. file(READ ${RunCMake_TEST_BINARY_DIR}/ExpandSourceDir/llvmrc.result LLVMRC_RESULT)
  912. if(NOT "${LLVMRC_RESULT}" STREQUAL "This is a test\n")
  913. message(SEND_ERROR "${test} - FAILED:\n"
  914. "llvmrc.result was not created")
  915. endif()
  916. unset(LLVMRC_RESULT)
  917. endfunction()
  918. run_llvm_rc()
  919. set(RunCMake_TEST_OPTIONS --profiling-output=/no/such/file.txt --profiling-format=google-trace)
  920. run_cmake(profiling-all-params)
  921. unset(RunCMake_TEST_OPTIONS)
  922. set(RunCMake_TEST_OPTIONS --profiling-output=/no/such/file.txt --profiling-format=invalid-format)
  923. run_cmake(profiling-invalid-format)
  924. unset(RunCMake_TEST_OPTIONS)
  925. set(RunCMake_TEST_OPTIONS --profiling-output=/no/such/file.txt)
  926. run_cmake(profiling-missing-format)
  927. unset(RunCMake_TEST_OPTIONS)
  928. set(RunCMake_TEST_OPTIONS --profiling-format=google-trace)
  929. run_cmake(profiling-missing-output)
  930. unset(RunCMake_TEST_OPTIONS)
  931. set(RunCMake_TEST_BINARY_DIR "${RunCMake_BINARY_DIR}/profiling-test")
  932. set(ProfilingTestOutput ${RunCMake_TEST_BINARY_DIR}/output.json)
  933. set(RunCMake_TEST_OPTIONS --profiling-format=google-trace --profiling-output=${ProfilingTestOutput})
  934. run_cmake(ProfilingTest)
  935. unset(RunCMake_TEST_OPTIONS)
  936. if(RunCMake_GENERATOR MATCHES "^Visual Studio 11 2012")
  937. run_cmake_with_options(DeprecateVS11-WARN-ON -DCMAKE_WARN_VS11=ON)
  938. unset(ENV{CMAKE_WARN_VS11})
  939. run_cmake(DeprecateVS11-WARN-ON)
  940. run_cmake_with_options(DeprecateVS11-WARN-OFF -DCMAKE_WARN_VS11=OFF)
  941. endif()