complex.cxx 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214
  1. #include "cmTestConfigure.h"
  2. #include "cmTestConfigureEscape.h"
  3. #include "cmTestGeneratedHeader.h"
  4. #include "cmVersion.h"
  5. #include "ExtraSources/file1.h"
  6. #include "file2.h"
  7. #include "sharedFile.h"
  8. extern "C" {
  9. #include "testConly.h"
  10. }
  11. #ifndef CMAKE_TEST_DIFFERENT_GENERATOR
  12. #include "cmStandardIncludes.h"
  13. #include "cmSystemTools.h"
  14. #include "cmDynamicLoader.h"
  15. #include "cmSystemTools.h"
  16. #include "cmOrderLinkDirectories.h"
  17. #include "cmGeneratedFileStream.h"
  18. #include <cmsys/DynamicLoader.hxx>
  19. #else
  20. #include <vector>
  21. #include <string>
  22. #include <iostream>
  23. #include <string.h>
  24. #endif
  25. int cm_passed = 0;
  26. int cm_failed = 0;
  27. // ======================================================================
  28. void cmFailed(const char* Message, const char* m2= "", const char* m3 = "")
  29. {
  30. std::cout << "FAILED: " << Message << m2 << m3 << "\n";
  31. cm_failed++;
  32. }
  33. // ======================================================================
  34. void cmPassed(const char* Message, const char* m2="")
  35. {
  36. std::cout << "Passed: " << Message << m2 << "\n";
  37. cm_passed++;
  38. }
  39. #ifndef CMAKE_IS_REALLY_FUN
  40. This is a problem. Looks like ADD_DEFINITIONS and REMOVE_DEFINITIONS does not work
  41. #endif
  42. #ifndef CMAKE_TEST_DIFFERENT_GENERATOR
  43. // Here is a stupid function that tries to use std::string methods
  44. // so that the dec cxx compiler will instantiate the stuff that
  45. // we are using from the CMakeLib library....
  46. bool TestLibraryOrder(bool shouldFail)
  47. {
  48. std::string Adir = std::string(BINARY_DIR) + std::string("/A");
  49. std::string Bdir = std::string(BINARY_DIR) + std::string("/B");
  50. std::string Cdir = std::string(BINARY_DIR) + std::string("/C");
  51. #ifdef _WIN32
  52. // Avoid case problems for windows paths.
  53. if(Adir[0] >= 'A' && Adir[0] <= 'Z') { Adir[0] += 'a' - 'A'; }
  54. if(Bdir[0] >= 'A' && Bdir[0] <= 'Z') { Bdir[0] += 'a' - 'A'; }
  55. if(Cdir[0] >= 'A' && Cdir[0] <= 'Z') { Cdir[0] += 'a' - 'A'; }
  56. Adir = cmSystemTools::GetActualCaseForPath(Adir.c_str());
  57. Bdir = cmSystemTools::GetActualCaseForPath(Bdir.c_str());
  58. Cdir = cmSystemTools::GetActualCaseForPath(Cdir.c_str());
  59. #endif
  60. if(!shouldFail)
  61. {
  62. std::string rm = Bdir;
  63. rm += "/libA.a";
  64. cmSystemTools::RemoveFile(rm.c_str());
  65. }
  66. std::vector<std::string> linkLibraries;
  67. std::vector<std::string> linkDirectories;
  68. linkDirectories.push_back(Adir);
  69. linkDirectories.push_back(Bdir);
  70. linkDirectories.push_back(Cdir);
  71. linkDirectories.push_back("/lib/extra/stuff");
  72. Adir += "/libA.a";
  73. Bdir += "/libB.a";
  74. Cdir += "/libC.a";
  75. linkLibraries.push_back(Adir);
  76. linkLibraries.push_back(Bdir);
  77. linkLibraries.push_back(Cdir);
  78. linkLibraries.push_back("-lm");
  79. std::vector<cmStdString> sortedpaths;
  80. std::vector<cmStdString> linkItems;
  81. cmOrderLinkDirectories orderLibs;
  82. orderLibs.DebugOn();
  83. orderLibs.AddLinkExtension(".so");
  84. orderLibs.AddLinkExtension(".a");
  85. orderLibs.SetLinkPrefix("lib");
  86. orderLibs.SetLinkInformation("test", linkLibraries, linkDirectories);
  87. bool ret = orderLibs.DetermineLibraryPathOrder();
  88. orderLibs.GetLinkerInformation(sortedpaths, linkItems);
  89. std::cout << "Sorted Link Paths:\n";
  90. for(std::vector<cmStdString>::iterator i = sortedpaths.begin();
  91. i != sortedpaths.end(); ++i)
  92. {
  93. std::cout << *i << "\n";
  94. }
  95. std::cout << "Link Items: \n";
  96. for(std::vector<cmStdString>::iterator i = linkItems.begin();
  97. i != linkItems.end(); ++i)
  98. {
  99. std::cout << *i << "\n";
  100. }
  101. if(!(linkItems[0] == "A" &&
  102. linkItems[1] == "B" &&
  103. linkItems[2] == "C" &&
  104. linkItems[3] == "-lm" ))
  105. {
  106. std::cout << "fail because link items should be A B C -lm and the are not\n";
  107. return shouldFail;
  108. }
  109. // if this is not the fail test then the order should be f B C A
  110. if(!shouldFail)
  111. {
  112. char order[5];
  113. order[4] = 0;
  114. for(int i =0; i < 4; ++i)
  115. {
  116. order[i] = sortedpaths[i][sortedpaths[i].size()-1];
  117. }
  118. if(!(strcmp(order, "fBCA") == 0 || strcmp(order, "BCAf") == 0))
  119. {
  120. std::cout << "fail because order should be /lib/extra/stuff B C A and it is not\n";
  121. return false;
  122. }
  123. }
  124. return ret;
  125. }
  126. // ======================================================================
  127. void TestAndRemoveFile(const char* filename)
  128. {
  129. if (!cmSystemTools::FileExists(filename))
  130. {
  131. cmFailed("Could not find file: ", filename);
  132. }
  133. else
  134. {
  135. if (!cmSystemTools::RemoveFile(filename))
  136. {
  137. cmFailed("Unable to remove file. It does not imply that this test failed, but it *will* be corrupted thereafter if this file is not removed: ", filename);
  138. }
  139. else
  140. {
  141. cmPassed("Find and remove file: ", filename);
  142. }
  143. }
  144. }
  145. // ======================================================================
  146. void TestDir(const char* filename)
  147. {
  148. if (!cmSystemTools::FileExists(filename))
  149. {
  150. cmFailed("Could not find dir: ", filename);
  151. }
  152. else
  153. {
  154. if (!cmSystemTools::FileIsDirectory(filename))
  155. {
  156. cmFailed("Unable to check if file is a directory: ", filename);
  157. }
  158. else
  159. {
  160. cmPassed("Find dir: ", filename);
  161. }
  162. }
  163. }
  164. // ======================================================================
  165. void TestCMGeneratedFileSTream()
  166. {
  167. cmGeneratedFileStream gm;
  168. std::string file1 = std::string(BINARY_DIR) + std::string("/generatedFile1");
  169. std::string file2 = std::string(BINARY_DIR) + std::string("/generatedFile2");
  170. std::string file3 = std::string(BINARY_DIR) + std::string("/generatedFile3");
  171. std::string file4 = std::string(BINARY_DIR) + std::string("/generatedFile4");
  172. std::string file1tmp = file1 + ".tmp";
  173. std::string file2tmp = file2 + ".tmp";
  174. std::string file3tmp = file3 + ".tmp";
  175. std::string file4tmp = file4 + ".tmp";
  176. gm.Open(file1.c_str());
  177. gm << "This is generated file 1";
  178. gm.Close();
  179. gm.Open(file2.c_str());
  180. gm << "This is generated file 2";
  181. gm.Close();
  182. gm.Open(file3.c_str());
  183. gm << "This is generated file 3";
  184. gm.Close();
  185. gm.Open(file4.c_str());
  186. gm << "This is generated file 4";
  187. gm.Close();
  188. if ( cmSystemTools::FileExists(file1.c_str()) )
  189. {
  190. if ( cmSystemTools::FileExists(file2.c_str()) )
  191. {
  192. if ( cmSystemTools::FileExists(file3.c_str()) )
  193. {
  194. if ( cmSystemTools::FileExists(file4.c_str()) )
  195. {
  196. if ( cmSystemTools::FileExists(file1tmp.c_str()) )
  197. {
  198. cmFailed("Something wrong with cmGeneratedFileStream. Temporary file is still here: ", file1tmp.c_str());
  199. }
  200. else if ( cmSystemTools::FileExists(file2tmp.c_str()) )
  201. {
  202. cmFailed("Something wrong with cmGeneratedFileStream. Temporary file is still here: ", file2tmp.c_str());
  203. }
  204. else if ( cmSystemTools::FileExists(file3tmp.c_str()) )
  205. {
  206. cmFailed("Something wrong with cmGeneratedFileStream. Temporary file is still here: ", file3tmp.c_str());
  207. }
  208. else if ( cmSystemTools::FileExists(file4tmp.c_str()) )
  209. {
  210. cmFailed("Something wrong with cmGeneratedFileStream. Temporary file is still here: ", file4tmp.c_str());
  211. }
  212. else
  213. {
  214. cmPassed("cmGeneratedFileStream works.");
  215. }
  216. }
  217. else
  218. {
  219. cmFailed("Something wrong with cmGeneratedFileStream. Cannot find file: ", file4.c_str());
  220. }
  221. }
  222. else
  223. {
  224. cmFailed("Something wrong with cmGeneratedFileStream. Found file: ", file3.c_str());
  225. }
  226. }
  227. else
  228. {
  229. cmFailed("Something wrong with cmGeneratedFileStream. Cannot find file: ", file2.c_str());
  230. }
  231. }
  232. else
  233. {
  234. cmFailed("Something wrong with cmGeneratedFileStream. Cannot find file: ", file1.c_str());
  235. }
  236. cmSystemTools::RemoveFile(file1.c_str());
  237. cmSystemTools::RemoveFile(file2.c_str());
  238. cmSystemTools::RemoveFile(file3.c_str());
  239. cmSystemTools::RemoveFile(file1tmp.c_str());
  240. cmSystemTools::RemoveFile(file2tmp.c_str());
  241. cmSystemTools::RemoveFile(file3tmp.c_str());
  242. }
  243. #endif
  244. void ForceStringUse()
  245. {
  246. std::vector<std::string> v;
  247. std::vector<std::string> v2;
  248. v = v2;
  249. std::string cachetest = CACHE_TEST_VAR_INTERNAL;
  250. v.push_back(cachetest);
  251. v2 = v;
  252. std::string x(5,'x');
  253. char buff[5];
  254. x.copy(buff, 1, 0);
  255. x[0] = 'a';
  256. std::string::size_type pos = 0;
  257. x.replace(pos, pos, pos, 'x');
  258. std::string copy = cachetest;
  259. cachetest.find("bar");
  260. cachetest.rfind("bar");
  261. copy.append(cachetest);
  262. copy = cachetest.substr(0, cachetest.size());
  263. }
  264. // defined in testcflags.c
  265. extern "C" int TestCFlags(char* m);
  266. extern "C" int TestTargetCompileFlags(char* m);
  267. // ======================================================================
  268. int main()
  269. {
  270. std::string lib = BINARY_DIR;
  271. lib += "/bin/";
  272. #ifdef CMAKE_INTDIR
  273. lib += CMAKE_INTDIR;
  274. lib += "/";
  275. #endif
  276. std::string exe = lib;
  277. #ifndef CMAKE_TEST_DIFFERENT_GENERATOR
  278. // Test a single character executable to test a: in makefiles
  279. exe += "A";
  280. exe += cmSystemTools::GetExecutableExtension();
  281. int ret;
  282. std::string errorMessage;
  283. exe = cmSystemTools::ConvertToRunCommandPath(exe.c_str());
  284. if(cmSystemTools::RunSingleCommand(exe.c_str(), 0, &ret))
  285. {
  286. if(ret != 10)
  287. {
  288. errorMessage += exe;
  289. errorMessage += " did not return 10";
  290. }
  291. }
  292. else
  293. {
  294. errorMessage += exe;
  295. errorMessage += ": failed to run.";
  296. }
  297. if(errorMessage.size())
  298. {
  299. cmFailed(errorMessage.c_str());
  300. }
  301. else
  302. {
  303. cmPassed("run Single Character executable A returned 10 as expected.");
  304. }
  305. lib += cmDynamicLoader::LibPrefix();
  306. lib += "CMakeTestModule";
  307. lib += cmDynamicLoader::LibExtension();
  308. cmsys::DynamicLoader::LibraryHandle handle = cmDynamicLoader::OpenLibrary(lib.c_str());
  309. if(!handle)
  310. {
  311. std::string err = "Can not open CMakeTestModule:\n";
  312. err += lib;
  313. cmFailed(err.c_str());
  314. }
  315. else
  316. {
  317. cmsys::DynamicLoader::SymbolPointer fun =
  318. cmsys::DynamicLoader::GetSymbolAddress(handle, "ModuleFunction");
  319. if(!fun)
  320. {
  321. fun = cmsys::DynamicLoader::GetSymbolAddress(handle, "_ModuleFunction");
  322. }
  323. typedef int (*TEST_FUNCTION)();
  324. TEST_FUNCTION testFun = (TEST_FUNCTION)fun;
  325. if(!testFun)
  326. {
  327. cmFailed("Could not find symbol ModuleFunction in library ");
  328. }
  329. else
  330. {
  331. int ret = (*testFun)();
  332. if(!ret)
  333. {
  334. cmFailed("ModuleFunction call did not return valid return.");
  335. }
  336. cmPassed("Module loaded and ModuleFunction called correctly.");
  337. }
  338. }
  339. if(sharedFunction() != 1)
  340. {
  341. cmFailed("Call to sharedFunction from shared library failed.");
  342. }
  343. else
  344. {
  345. cmPassed("Call to sharedFunction from shared library worked.");
  346. }
  347. if(CsharedFunction() != 1)
  348. {
  349. cmFailed("Call to C sharedFunction from shared library failed.");
  350. }
  351. else
  352. {
  353. cmPassed("Call to C sharedFunction from shared library worked.");
  354. }
  355. // ----------------------------------------------------------------------
  356. // Test cmSystemTools::UpperCase
  357. std::string str = "abc";
  358. std::string strupper = "ABC";
  359. if(cmSystemTools::UpperCase(str) == strupper)
  360. {
  361. cmPassed("cmSystemTools::UpperCase is working");
  362. }
  363. else
  364. {
  365. cmFailed("cmSystemTools::UpperCase is working");
  366. }
  367. #endif
  368. if(file1() != 1)
  369. {
  370. cmFailed("Call to file1 function from library failed.");
  371. }
  372. else
  373. {
  374. cmPassed("Call to file1 function returned 1.");
  375. }
  376. #ifndef COMPLEX_TARGET_FLAG
  377. cmFailed("COMPILE_FLAGS did not work with SET_TARGET_PROPERTIES");
  378. #else
  379. cmPassed("COMPILE_FLAGS did work with SET_TARGET_PROPERTIES");
  380. #endif
  381. if(file2() != 1)
  382. {
  383. cmFailed("Call to file2 function from library failed.");
  384. }
  385. else
  386. {
  387. cmPassed("Call to file2 function returned 1.");
  388. }
  389. #ifndef TEST_CXX_FLAGS
  390. cmFailed("CMake CMAKE_CXX_FLAGS is not being passed to the compiler!");
  391. #else
  392. cmPassed("CMake CMAKE_CXX_FLAGS is being passed to the compiler.");
  393. #endif
  394. std::string gen = CMAKE_GENERATOR;
  395. // visual studio is currently broken for c flags
  396. char msg[1024];
  397. if(gen.find("Visual") == gen.npos)
  398. {
  399. #ifdef TEST_C_FLAGS
  400. cmFailed("CMake CMAKE_C_FLAGS are being passed to c++ files the compiler!");
  401. #else
  402. cmPassed("CMake CMAKE_C_FLAGS are not being passed to c++ files.");
  403. #endif
  404. if(TestCFlags(msg))
  405. {
  406. cmPassed(
  407. "CMake CMAKE_C_FLAGS are being passed to c files and CXX flags are not.");
  408. }
  409. else
  410. {
  411. cmFailed(msg);
  412. }
  413. }
  414. if(TestTargetCompileFlags(msg))
  415. {
  416. cmPassed(msg);
  417. }
  418. else
  419. {
  420. cmFailed(msg);
  421. }
  422. // ----------------------------------------------------------------------
  423. // Test ADD_DEFINITIONS
  424. #ifndef CMAKE_IS_FUN
  425. cmFailed("CMake is not fun, so it is broken and should be fixed.");
  426. #else
  427. cmPassed("CMAKE_IS_FUN is defined.");
  428. #endif
  429. #if defined(CMAKE_ARGV1) && defined(CMAKE_ARGV2) && defined(CMAKE_ARGV3) && defined(CMAKE_ARGV4)
  430. cmPassed("Variable args for MACROs are working.");
  431. #else
  432. cmFailed("Variable args for MACROs are failing.");
  433. #endif
  434. // ----------------------------------------------------------------------
  435. // Test SET, VARIABLE_REQUIRES
  436. #ifdef SHOULD_NOT_BE_DEFINED
  437. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED is defined.");
  438. #else
  439. cmPassed("SHOULD_NOT_BE_DEFINED is not defined.");
  440. #endif
  441. #ifndef SHOULD_BE_DEFINED
  442. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED is not defined.\n");
  443. #else
  444. cmPassed("SHOULD_BE_DEFINED is defined.");
  445. #endif
  446. #ifndef ONE_VAR
  447. cmFailed("cmakedefine is broken, ONE_VAR is not defined.");
  448. #else
  449. cmPassed("ONE_VAR is defined.");
  450. #endif
  451. #ifndef ONE_VAR_IS_DEFINED
  452. cmFailed("cmakedefine, SET or VARIABLE_REQUIRES is broken, "
  453. "ONE_VAR_IS_DEFINED is not defined.");
  454. #else
  455. cmPassed("ONE_VAR_IS_DEFINED is defined.");
  456. #endif
  457. #ifdef ZERO_VAR
  458. cmFailed("cmakedefine is broken, ZERO_VAR is defined.");
  459. #else
  460. cmPassed("ZERO_VAR is not defined.");
  461. #endif
  462. #ifndef STRING_VAR
  463. cmFailed("the CONFIGURE_FILE command is broken, STRING_VAR is not defined.");
  464. #else
  465. if(strcmp(STRING_VAR, "CMake is great") != 0)
  466. {
  467. cmFailed("the SET or CONFIGURE_FILE command is broken. STRING_VAR == ",
  468. STRING_VAR);
  469. }
  470. else
  471. {
  472. cmPassed("STRING_VAR == ", STRING_VAR);
  473. }
  474. #endif
  475. // ----------------------------------------------------------------------
  476. // Test various IF/ELSE combinations
  477. #ifdef SHOULD_NOT_BE_DEFINED_NOT
  478. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_NOT is defined.");
  479. #else
  480. cmPassed("SHOULD_NOT_BE_DEFINED_NOT is not defined.");
  481. #endif
  482. #ifndef SHOULD_BE_DEFINED_NOT
  483. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_NOT is not defined.\n");
  484. #else
  485. cmPassed("SHOULD_BE_DEFINED_NOT is defined.");
  486. #endif
  487. #ifdef SHOULD_NOT_BE_DEFINED_NOT2
  488. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_NOT2 is defined.");
  489. #else
  490. cmPassed("SHOULD_NOT_BE_DEFINED_NOT2 is not defined.");
  491. #endif
  492. #ifndef SHOULD_BE_DEFINED_NOT2
  493. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_NOT2 is not defined.\n");
  494. #else
  495. cmPassed("SHOULD_BE_DEFINED_NOT2 is defined.");
  496. #endif
  497. #ifdef SHOULD_NOT_BE_DEFINED_AND
  498. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_AND is defined.");
  499. #else
  500. cmPassed("SHOULD_NOT_BE_DEFINED_AND is not defined.");
  501. #endif
  502. #ifndef SHOULD_BE_DEFINED_AND
  503. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_AND is not defined.\n");
  504. #else
  505. cmPassed("SHOULD_BE_DEFINED_AND is defined.");
  506. #endif
  507. #ifdef SHOULD_NOT_BE_DEFINED_AND2
  508. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_AND2 is defined.");
  509. #else
  510. cmPassed("SHOULD_NOT_BE_DEFINED_AND2 is not defined.");
  511. #endif
  512. #ifndef SHOULD_BE_DEFINED_AND2
  513. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_AND2 is not defined.\n");
  514. #else
  515. cmPassed("SHOULD_BE_DEFINED_AND2 is defined.");
  516. #endif
  517. #ifdef SHOULD_NOT_BE_DEFINED_OR
  518. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_OR is defined.");
  519. #else
  520. cmPassed("SHOULD_NOT_BE_DEFINED_OR is not defined.");
  521. #endif
  522. #ifndef SHOULD_BE_DEFINED_OR
  523. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_OR is not defined.\n");
  524. #else
  525. cmPassed("SHOULD_BE_DEFINED_OR is defined.");
  526. #endif
  527. #ifdef SHOULD_NOT_BE_DEFINED_OR2
  528. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_OR2 is defined.");
  529. #else
  530. cmPassed("SHOULD_NOT_BE_DEFINED_OR2 is not defined.");
  531. #endif
  532. #ifndef SHOULD_BE_DEFINED_OR2
  533. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_OR2 is not defined.\n");
  534. #else
  535. cmPassed("SHOULD_BE_DEFINED_OR2 is defined.");
  536. #endif
  537. #ifdef SHOULD_NOT_BE_DEFINED_MATCHES
  538. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_MATCHES is defined.");
  539. #else
  540. cmPassed("SHOULD_NOT_BE_DEFINED_MATCHES is not defined.");
  541. #endif
  542. #ifndef SHOULD_BE_DEFINED_MATCHES
  543. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_MATCHES is not defined.\n");
  544. #else
  545. cmPassed("SHOULD_BE_DEFINED_MATCHES is defined.");
  546. #endif
  547. #ifdef SHOULD_NOT_BE_DEFINED_MATCHES2
  548. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_MATCHES2 is defined.");
  549. #else
  550. cmPassed("SHOULD_NOT_BE_DEFINED_MATCHES2 is not defined.");
  551. #endif
  552. #ifndef SHOULD_BE_DEFINED_MATCHES2
  553. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_MATCHES2 is not defined.\n");
  554. #else
  555. cmPassed("SHOULD_BE_DEFINED_MATCHES2 is defined.");
  556. #endif
  557. #ifdef SHOULD_NOT_BE_DEFINED_COMMAND
  558. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_COMMAND is defined.");
  559. #else
  560. cmPassed("SHOULD_NOT_BE_DEFINED_COMMAND is not defined.");
  561. #endif
  562. #ifndef SHOULD_BE_DEFINED_COMMAND
  563. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_COMMAND is not defined.\n");
  564. #else
  565. cmPassed("SHOULD_BE_DEFINED_COMMAND is defined.");
  566. #endif
  567. #ifdef SHOULD_NOT_BE_DEFINED_COMMAND2
  568. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_COMMAND2 is defined.");
  569. #else
  570. cmPassed("SHOULD_NOT_BE_DEFINED_COMMAND2 is not defined.");
  571. #endif
  572. #ifndef SHOULD_BE_DEFINED_COMMAND2
  573. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_COMMAND2 is not defined.\n");
  574. #else
  575. cmPassed("SHOULD_BE_DEFINED_COMMAND2 is defined.");
  576. #endif
  577. #ifdef SHOULD_NOT_BE_DEFINED_EXISTS
  578. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_EXISTS is defined.");
  579. #else
  580. cmPassed("SHOULD_NOT_BE_DEFINED_EXISTS is not defined.");
  581. #endif
  582. #ifndef SHOULD_BE_DEFINED_EXISTS
  583. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_EXISTS is not defined.\n");
  584. #else
  585. cmPassed("SHOULD_BE_DEFINED_EXISTS is defined.");
  586. #endif
  587. #ifdef SHOULD_NOT_BE_DEFINED_EXISTS2
  588. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_EXISTS2 is defined.");
  589. #else
  590. cmPassed("SHOULD_NOT_BE_DEFINED_EXISTS2 is not defined.");
  591. #endif
  592. #ifndef SHOULD_BE_DEFINED_EXISTS2
  593. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_EXISTS2 is not defined.\n");
  594. #else
  595. cmPassed("SHOULD_BE_DEFINED_EXISTS2 is defined.");
  596. #endif
  597. #ifdef SHOULD_NOT_BE_DEFINED_LESS
  598. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_LESS is defined.");
  599. #else
  600. cmPassed("SHOULD_NOT_BE_DEFINED_LESS is not defined.");
  601. #endif
  602. #ifndef SHOULD_BE_DEFINED_LESS
  603. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_LESS is not defined.\n");
  604. #else
  605. cmPassed("SHOULD_BE_DEFINED_LESS is defined.");
  606. #endif
  607. #ifdef SHOULD_NOT_BE_DEFINED_LESS2
  608. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_LESS2 is defined.");
  609. #else
  610. cmPassed("SHOULD_NOT_BE_DEFINED_LESS2 is not defined.");
  611. #endif
  612. #ifndef SHOULD_BE_DEFINED_LESS2
  613. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_LESS2 is not defined.\n");
  614. #else
  615. cmPassed("SHOULD_BE_DEFINED_LESS2 is defined.");
  616. #endif
  617. #ifdef SHOULD_NOT_BE_DEFINED_GREATER
  618. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_GREATER is defined.");
  619. #else
  620. cmPassed("SHOULD_NOT_BE_DEFINED_GREATER is not defined.");
  621. #endif
  622. #ifdef SHOULD_NOT_BE_DEFINED_EQUAL
  623. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_EQUAL is defined.");
  624. #else
  625. cmPassed("SHOULD_NOT_BE_DEFINED_EQUAL is not defined.");
  626. #endif
  627. #ifndef SHOULD_BE_DEFINED_EQUAL
  628. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_EQUAL is not defined.\n");
  629. #else
  630. cmPassed("SHOULD_BE_DEFINED_EQUAL is defined.");
  631. #endif
  632. #ifndef SHOULD_BE_DEFINED_GREATER
  633. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_GREATER is not defined.\n");
  634. #else
  635. cmPassed("SHOULD_BE_DEFINED_GREATER is defined.");
  636. #endif
  637. #ifdef SHOULD_NOT_BE_DEFINED_GREATER2
  638. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_GREATER2 is defined.");
  639. #else
  640. cmPassed("SHOULD_NOT_BE_DEFINED_GREATER2 is not defined.");
  641. #endif
  642. #ifndef SHOULD_BE_DEFINED_GREATER2
  643. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_GREATER2 is not defined.\n");
  644. #else
  645. cmPassed("SHOULD_BE_DEFINED_GREATER2 is defined.");
  646. #endif
  647. #ifdef SHOULD_NOT_BE_DEFINED_STRLESS
  648. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_STRLESS is defined.");
  649. #else
  650. cmPassed("SHOULD_NOT_BE_DEFINED_STRLESS is not defined.");
  651. #endif
  652. #ifndef SHOULD_BE_DEFINED_STRLESS
  653. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_STRLESS is not defined.\n");
  654. #else
  655. cmPassed("SHOULD_BE_DEFINED_STRLESS is defined.");
  656. #endif
  657. #ifdef SHOULD_NOT_BE_DEFINED_STRLESS2
  658. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_STRLESS2 is defined.");
  659. #else
  660. cmPassed("SHOULD_NOT_BE_DEFINED_STRLESS2 is not defined.");
  661. #endif
  662. #ifndef SHOULD_BE_DEFINED_STRLESS2
  663. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_STRLESS2 is not defined.\n");
  664. #else
  665. cmPassed("SHOULD_BE_DEFINED_STRLESS2 is defined.");
  666. #endif
  667. #ifdef SHOULD_NOT_BE_DEFINED_STRGREATER
  668. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_STRGREATER is defined.");
  669. #else
  670. cmPassed("SHOULD_NOT_BE_DEFINED_STRGREATER is not defined.");
  671. #endif
  672. #ifndef SHOULD_BE_DEFINED_STRGREATER
  673. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_STRGREATER is not defined.\n");
  674. #else
  675. cmPassed("SHOULD_BE_DEFINED_STRGREATER is defined.");
  676. #endif
  677. #ifdef SHOULD_NOT_BE_DEFINED_STRGREATER2
  678. cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_STRGREATER2 is defined.");
  679. #else
  680. cmPassed("SHOULD_NOT_BE_DEFINED_STRGREATER2 is not defined.");
  681. #endif
  682. #ifndef SHOULD_BE_DEFINED_STRGREATER2
  683. cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_STRGREATER2 is not defined.\n");
  684. #else
  685. cmPassed("SHOULD_BE_DEFINED_STRGREATER2 is defined.");
  686. #endif
  687. // ----------------------------------------------------------------------
  688. // Test FOREACH
  689. #ifndef FOREACH_VAR1
  690. cmFailed("the FOREACH, SET or CONFIGURE_FILE command is broken, "
  691. "FOREACH_VAR1 is not defined.");
  692. #else
  693. if(strcmp(FOREACH_VAR1, "VALUE1") != 0)
  694. {
  695. cmFailed("the FOREACH, SET or CONFIGURE_FILE command is broken, "
  696. "FOREACH_VAR1 == ", FOREACH_VAR1);
  697. }
  698. else
  699. {
  700. cmPassed("FOREACH_VAR1 == ", FOREACH_VAR1);
  701. }
  702. #endif
  703. #ifndef FOREACH_VAR2
  704. cmFailed("the FOREACH, SET or CONFIGURE_FILE command is broken, "
  705. "FOREACH_VAR2 is not defined.");
  706. #else
  707. if(strcmp(FOREACH_VAR2, "VALUE2") != 0)
  708. {
  709. cmFailed("the FOREACH, SET or CONFIGURE_FILE command is broken, "
  710. "FOREACH_VAR2 == ", FOREACH_VAR2);
  711. }
  712. else
  713. {
  714. cmPassed("FOREACH_VAR2 == ", FOREACH_VAR2);
  715. }
  716. #endif
  717. #ifndef FOREACH_CONCAT
  718. cmFailed("the FOREACH, SET or CONFIGURE_FILE command is broken, "
  719. "FOREACH_CONCAT is not defined.");
  720. #else
  721. if(strcmp(FOREACH_CONCAT, "abcdefg") != 0)
  722. {
  723. cmFailed("the FOREACH, SET or CONFIGURE_FILE command is broken, "
  724. "FOREACH_CONCAT == ", FOREACH_CONCAT);
  725. }
  726. else
  727. {
  728. cmPassed("FOREACH_CONCAT == ", FOREACH_CONCAT);
  729. }
  730. #endif
  731. // ----------------------------------------------------------------------
  732. // Test WHILE
  733. if(WHILE_VALUE != 1000)
  734. {
  735. cmFailed("WHILE command is not working");
  736. }
  737. else
  738. {
  739. cmPassed("WHILE command is working");
  740. }
  741. // ----------------------------------------------------------------------
  742. // Test FIND_FILE, FIND_PATH and various GET_FILENAME_COMPONENT combinations
  743. #ifndef FILENAME_VAR_PATH_NAME
  744. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  745. "FILENAME_VAR_PATH_NAME is not defined.");
  746. #else
  747. if((strcmp(FILENAME_VAR_PATH_NAME, "Complex") == 0) ||
  748. (strcmp(FILENAME_VAR_PATH_NAME, "ComplexOneConfig") == 0) ||
  749. (strcmp(FILENAME_VAR_PATH_NAME, "ComplexRelativePaths") == 0))
  750. {
  751. cmPassed("FILENAME_VAR_PATH_NAME == ", FILENAME_VAR_PATH_NAME);
  752. }
  753. else
  754. {
  755. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  756. "FILENAME_VAR_PATH_NAME == ", FILENAME_VAR_PATH_NAME);
  757. }
  758. #endif
  759. #ifndef FILENAME_VAR_NAME
  760. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  761. "FILENAME_VAR_NAME is not defined.");
  762. #else
  763. if(strcmp(FILENAME_VAR_NAME, "VarTests.cmake") != 0)
  764. {
  765. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  766. "FILENAME_VAR_NAME == ", FILENAME_VAR_NAME);
  767. }
  768. else
  769. {
  770. cmPassed("FILENAME_VAR_NAME == ", FILENAME_VAR_NAME);
  771. }
  772. #endif
  773. #ifndef FILENAME_VAR_EXT
  774. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  775. "FILENAME_VAR_EXT is not defined.");
  776. #else
  777. if(strcmp(FILENAME_VAR_EXT, ".cmake") != 0)
  778. {
  779. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  780. "FILENAME_VAR_EXT == ", FILENAME_VAR_EXT);
  781. }
  782. else
  783. {
  784. cmPassed("FILENAME_VAR_EXT == ", FILENAME_VAR_EXT);
  785. }
  786. #endif
  787. #ifndef FILENAME_VAR_NAME_WE
  788. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  789. "FILENAME_VAR_NAME_WE is not defined.");
  790. #else
  791. if(strcmp(FILENAME_VAR_NAME_WE, "VarTests") != 0)
  792. {
  793. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  794. "FILENAME_VAR_NAME_WE == ", FILENAME_VAR_NAME_WE);
  795. }
  796. else
  797. {
  798. cmPassed("FILENAME_VAR_NAME_WE == ", FILENAME_VAR_NAME_WE);
  799. }
  800. #endif
  801. #ifndef PATH_VAR_NAME
  802. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  803. "PATH_VAR_NAME is not defined.");
  804. #else
  805. if((strcmp(PATH_VAR_NAME, "Complex") == 0) ||
  806. (strcmp(PATH_VAR_NAME, "ComplexOneConfig") == 0) ||
  807. (strcmp(PATH_VAR_NAME, "ComplexRelativePaths") == 0))
  808. {
  809. cmPassed("PATH_VAR_NAME == ", PATH_VAR_NAME);
  810. }
  811. else
  812. {
  813. cmFailed("the FIND_FILE or GET_FILENAME_COMPONENT command is broken, "
  814. "PATH_VAR_NAME == ", PATH_VAR_NAME);
  815. }
  816. #endif
  817. // ----------------------------------------------------------------------
  818. // Test LOAD_CACHE
  819. #ifndef CACHE_TEST_VAR1
  820. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  821. "CACHE_TEST_VAR1 is not defined.");
  822. #else
  823. if(strcmp(CACHE_TEST_VAR1, "foo") != 0)
  824. {
  825. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  826. "CACHE_TEST_VAR1 == ", CACHE_TEST_VAR1);
  827. }
  828. else
  829. {
  830. cmPassed("CACHE_TEST_VAR1 == ", CACHE_TEST_VAR1);
  831. }
  832. #endif
  833. #ifndef CACHE_TEST_VAR2
  834. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  835. "CACHE_TEST_VAR2 is not defined.");
  836. #else
  837. if(strcmp(CACHE_TEST_VAR2, "bar") != 0)
  838. {
  839. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  840. "CACHE_TEST_VAR2 == ", CACHE_TEST_VAR2);
  841. }
  842. else
  843. {
  844. cmPassed("CACHE_TEST_VAR2 == ", CACHE_TEST_VAR2);
  845. }
  846. #endif
  847. #ifndef CACHE_TEST_VAR3
  848. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  849. "CACHE_TEST_VAR3 is not defined.");
  850. #else
  851. if(strcmp(CACHE_TEST_VAR3, "1") != 0)
  852. {
  853. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  854. "CACHE_TEST_VAR3 == ", CACHE_TEST_VAR3);
  855. }
  856. else
  857. {
  858. cmPassed("CACHE_TEST_VAR3 == ", CACHE_TEST_VAR3);
  859. }
  860. #endif
  861. #ifdef CACHE_TEST_VAR_EXCLUDED
  862. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command or cmakedefine is broken, "
  863. "CACHE_TEST_VAR_EXCLUDED is defined (should not have been loaded).");
  864. #else
  865. cmPassed("CACHE_TEST_VAR_EXCLUDED is not defined.");
  866. #endif
  867. #ifndef CACHE_TEST_VAR_INTERNAL
  868. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  869. "CACHE_TEST_VAR_INTERNAL is not defined.");
  870. #else
  871. std::string cachetest = CACHE_TEST_VAR_INTERNAL;
  872. if(cachetest != "bar")
  873. {
  874. cmFailed("the LOAD_CACHE or CONFIGURE_FILE command is broken, "
  875. "CACHE_TEST_VAR_INTERNAL == ", CACHE_TEST_VAR_INTERNAL);
  876. }
  877. else
  878. {
  879. cmPassed("CACHE_TEST_VAR_INTERNAL == ", CACHE_TEST_VAR_INTERNAL);
  880. }
  881. #endif
  882. #ifndef CMAKE_TEST_DIFFERENT_GENERATOR
  883. // ----------------------------------------------------------------------
  884. // Some pre-build/pre-link/post-build custom-commands have been
  885. // attached to the lib (see Library/).
  886. // Each runs ${CREATE_FILE_EXE} which will create a file.
  887. // It also copies that file again using cmake -E.
  888. // Similar rules have been added to this executable.
  889. //
  890. // WARNING: if you run 'complex' manually, this *will* fail, because
  891. // the file was removed the last time 'complex' was run, and it is
  892. // only created during a build.
  893. TestAndRemoveFile(BINARY_DIR "/Library/prebuild.txt");
  894. TestAndRemoveFile(BINARY_DIR "/Library/prelink.txt");
  895. TestAndRemoveFile(BINARY_DIR "/Library/postbuild.txt");
  896. TestAndRemoveFile(BINARY_DIR "/Library/postbuild2.txt");
  897. TestAndRemoveFile(BINARY_DIR "/Executable/prebuild.txt");
  898. TestAndRemoveFile(BINARY_DIR "/Executable/prelink.txt");
  899. TestAndRemoveFile(BINARY_DIR "/Executable/postbuild.txt");
  900. TestAndRemoveFile(BINARY_DIR "/Executable/postbuild2.txt");
  901. // ----------------------------------------------------------------------
  902. // A custom target has been created (see Library/).
  903. // It runs ${CREATE_FILE_EXE} which will create a file.
  904. //
  905. // WARNING: if you run 'complex' manually, this *will* fail, because
  906. // the file was removed the last time 'complex' was run, and it is
  907. // only created during a build.
  908. TestAndRemoveFile(BINARY_DIR "/Library/custom_target1.txt");
  909. // ----------------------------------------------------------------------
  910. // A directory has been created.
  911. TestDir(BINARY_DIR "/make_dir");
  912. // ----------------------------------------------------------------------
  913. // Test OUTPUT_REQUIRED_FILES
  914. // The files required by 'complex' have been output to a file.
  915. // The contents of this file is not tested (absolute paths).
  916. //
  917. // WARNING: if you run 'complex' manually, this *will* fail, because
  918. // the file was removed the last time 'complex' was run, and it is
  919. // only created during a build.
  920. TestAndRemoveFile(BINARY_DIR "/Executable/Temp/complex-required.txt");
  921. #endif
  922. // ----------------------------------------------------------------------
  923. // Test FIND_LIBRARY
  924. #ifndef FIND_DUMMY_LIB
  925. cmFailed("the CONFIGURE_FILE command is broken, "
  926. "FIND_DUMMY_LIB is not defined.");
  927. #else
  928. if(strstr(FIND_DUMMY_LIB, "dummylib") == NULL)
  929. {
  930. cmFailed("the FIND_LIBRARY or CONFIGURE_FILE command is broken, "
  931. "FIND_DUMMY_LIB == ", FIND_DUMMY_LIB);
  932. }
  933. else
  934. {
  935. cmPassed("FIND_DUMMY_LIB == ", FIND_DUMMY_LIB);
  936. }
  937. #endif
  938. // ----------------------------------------------------------------------
  939. // Test SET_SOURCE_FILES_PROPERTIES
  940. #ifndef FILE_HAS_EXTRA_COMPILE_FLAGS
  941. cmFailed("SET_SOURCE_FILES_PROPERTIES failed at setting FILE_HAS_EXTRA_COMPILE_FLAGS flag");
  942. #else
  943. cmPassed("SET_SOURCE_FILES_PROPERTIES succeeded in setting FILE_HAS_EXTRA_COMPILE_FLAGS flag");
  944. #endif
  945. #ifndef FILE_HAS_ABSTRACT
  946. cmFailed("SET_SOURCE_FILES_PROPERTIES failed at setting ABSTRACT flag");
  947. #else
  948. cmPassed("SET_SOURCE_FILES_PROPERTIES succeeded in setting ABSTRACT flag");
  949. #endif
  950. #ifndef FILE_HAS_WRAP_EXCLUDE
  951. cmFailed("FILE_HAS_WRAP_EXCLUDE failed at setting WRAP_EXCLUDE flag");
  952. #else
  953. cmPassed("FILE_HAS_WRAP_EXCLUDE succeeded in setting WRAP_EXCLUDE flag");
  954. #endif
  955. #ifndef FILE_COMPILE_FLAGS
  956. cmFailed("the CONFIGURE_FILE command is broken, FILE_COMPILE_FLAGS is not defined.");
  957. #else
  958. if(strcmp(FILE_COMPILE_FLAGS, "-foo -bar") != 0)
  959. {
  960. cmFailed("the SET_SOURCE_FILES_PROPERTIES or CONFIGURE_FILE command is broken. FILE_COMPILE_FLAGS == ",
  961. FILE_COMPILE_FLAGS);
  962. }
  963. else
  964. {
  965. cmPassed("SET_SOURCE_FILES_PROPERTIES succeeded in setting extra flags == ", FILE_COMPILE_FLAGS);
  966. }
  967. #endif
  968. // ----------------------------------------------------------------------
  969. // Test registry (win32)
  970. #if defined(_WIN32) && !defined(__CYGWIN__)
  971. #ifndef REGISTRY_TEST_PATH
  972. cmFailed("the CONFIGURE_FILE command is broken, REGISTRY_TEST_PATH is not defined.");
  973. #else
  974. std::cout << "REGISTRY_TEST_PATH == " << REGISTRY_TEST_PATH << "\n";
  975. if(stricmp(REGISTRY_TEST_PATH, BINARY_DIR "/registry_dir") != 0)
  976. {
  977. cmFailed("the 'read registry value' function or CONFIGURE_FILE command is broken. REGISTRY_TEST_PATH == ",
  978. REGISTRY_TEST_PATH, " is not " BINARY_DIR "/registry_dir");
  979. }
  980. else
  981. {
  982. cmPassed("REGISTRY_TEST_PATH == ", REGISTRY_TEST_PATH);
  983. }
  984. #endif
  985. #endif // defined(_WIN32) && !defined(__CYGWIN__)
  986. if(strcmp(CMAKE_MINIMUM_REQUIRED_VERSION, "1.3") == 0)
  987. {
  988. cmPassed("CMAKE_MINIMUM_REQUIRED_VERSION is set to 1.3");
  989. }
  990. else
  991. {
  992. cmFailed("CMAKE_MINIMUM_REQUIRED_VERSION is not set to the expected 1.3");
  993. }
  994. // ----------------------------------------------------------------------
  995. // Test REMOVE command
  996. if (strcmp("a;b;d",REMOVE_STRING) == 0)
  997. {
  998. cmPassed("REMOVE is working");
  999. }
  1000. else
  1001. {
  1002. cmFailed("REMOVE is not working");
  1003. }
  1004. // ----------------------------------------------------------------------
  1005. // Test SEPARATE_ARGUMENTS
  1006. if(strcmp("a;b;c", TEST_SEP) == 0)
  1007. {
  1008. cmPassed("SEPARATE_ARGUMENTS is working");
  1009. }
  1010. else
  1011. {
  1012. cmFailed("SEPARATE_ARGUMENTS is not working");
  1013. }
  1014. // ----------------------------------------------------------------------
  1015. // Test Escape Quotes
  1016. if(strcmp("\"hello world\"", STRING_WITH_QUOTES) == 0)
  1017. {
  1018. cmPassed("ESCAPE_QUOTES is working");
  1019. }
  1020. else
  1021. {
  1022. cmFailed("ESCAPE_QUOTES is not working");
  1023. }
  1024. // ----------------------------------------------------------------------
  1025. // Test if IF command inside a FOREACH works.
  1026. #if defined(IF_INSIDE_FOREACH_THEN_EXECUTED) && !defined(IF_INSIDE_FOREACH_ELSE_EXECUTED)
  1027. cmPassed("IF inside a FOREACH block works");
  1028. #else
  1029. cmFailed("IF inside a FOREACH block is broken");
  1030. #endif
  1031. #if defined(GENERATED_HEADER_INCLUDED)
  1032. cmPassed("Generated header included by non-generated source works.");
  1033. #else
  1034. cmFailed("Generated header included by non-generated source failed.");
  1035. #endif
  1036. if(SHOULD_BE_ZERO == 0)
  1037. {
  1038. cmPassed("cmakedefine01 is working for 0");
  1039. }
  1040. else
  1041. {
  1042. cmFailed("cmakedefine01 is not working for 0");
  1043. }
  1044. if(SHOULD_BE_ONE == 1)
  1045. {
  1046. cmPassed("cmakedefine01 is working for 1");
  1047. }
  1048. else
  1049. {
  1050. cmFailed("cmakedefine01 is not working for 1");
  1051. }
  1052. #ifdef FORCE_TEST
  1053. cmFailed("CMake SET CACHE FORCE");
  1054. #else
  1055. cmPassed("CMake SET CACHE FORCE");
  1056. #endif
  1057. #ifndef CMAKE_TEST_DIFFERENT_GENERATOR
  1058. // first run with shouldFail = true, this will
  1059. // run with A B C as set by the CMakeList.txt file.
  1060. if(!TestLibraryOrder(true))
  1061. {
  1062. cmPassed("CMake cmOrderLinkDirectories failed when it should.");
  1063. }
  1064. else
  1065. {
  1066. cmFailed("CMake cmOrderLinkDirectories failed to fail when given an impossible set of paths.");
  1067. }
  1068. // next run with shouldPass = true, this will
  1069. // run with B/libA.a removed and should create the order
  1070. // B C A
  1071. if(TestLibraryOrder(false))
  1072. {
  1073. cmPassed("CMake cmOrderLinkDirectories worked.");
  1074. }
  1075. else
  1076. {
  1077. cmFailed("CMake cmOrderLinkDirectories failed.");
  1078. }
  1079. // Test the generated file stream.
  1080. TestCMGeneratedFileSTream();
  1081. #endif
  1082. // ----------------------------------------------------------------------
  1083. // Summary
  1084. std::cout << "Passed: " << cm_passed << "\n";
  1085. if(cm_failed)
  1086. {
  1087. std::cout << "Failed: " << cm_failed << "\n";
  1088. return cm_failed;
  1089. }
  1090. return 0;
  1091. }