complex.cxx 37 KB

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