TestDriver.cxx.in 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #if defined(_MSC_VER)
  6. # pragma warning(disable:4996) /* deprecation */
  7. #endif
  8. @CMAKE_TESTDRIVER_EXTRA_INCLUDES@
  9. /* Forward declare test functions. */
  10. @CMAKE_FORWARD_DECLARE_TESTS@
  11. /* Create map. */
  12. typedef int (*MainFuncPointer)(int , char*[]);
  13. typedef struct
  14. {
  15. const char* name;
  16. MainFuncPointer func;
  17. } functionMapEntry;
  18. static functionMapEntry cmakeGeneratedFunctionMapEntries[] = {
  19. @CMAKE_FUNCTION_TABLE_ENTIRES@
  20. {0,0}
  21. };
  22. /* Allocate and create a lowercased copy of string
  23. (note that it has to be free'd manually) */
  24. static char* lowercase(const char *string)
  25. {
  26. char *new_string, *p;
  27. #ifdef __cplusplus
  28. new_string = static_cast<char *>(malloc(sizeof(char) *
  29. static_cast<size_t>(strlen(string) + 1)));
  30. #else
  31. new_string = (char *)(malloc(sizeof(char) * (size_t)(strlen(string) + 1)));
  32. #endif
  33. if (!new_string)
  34. {
  35. return 0;
  36. }
  37. strcpy(new_string, string);
  38. p = new_string;
  39. while (*p != 0)
  40. {
  41. #ifdef __cplusplus
  42. *p = static_cast<char>(tolower(*p));
  43. #else
  44. *p = (char)(tolower(*p));
  45. #endif
  46. ++p;
  47. }
  48. return new_string;
  49. }
  50. int main(int ac, char *av[])
  51. {
  52. int i, NumTests, testNum = 0, partial_match;
  53. char *arg, *test_name;
  54. int count;
  55. int testToRun = -1;
  56. @CMAKE_TESTDRIVER_ARGVC_FUNCTION@
  57. for(count =0; cmakeGeneratedFunctionMapEntries[count].name != 0; count++)
  58. {
  59. }
  60. NumTests = count;
  61. /* If no test name was given */
  62. /* process command line with user function. */
  63. if (ac < 2)
  64. {
  65. /* Ask for a test. */
  66. printf("Available tests:\n");
  67. for (i =0; i < NumTests; ++i)
  68. {
  69. printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name);
  70. }
  71. printf("To run a test, enter the test number: ");
  72. fflush(stdout);
  73. if( scanf("%d", &testNum) != 1 )
  74. {
  75. printf("Couldn't parse that input as a number\n");
  76. return -1;
  77. }
  78. if (testNum >= NumTests)
  79. {
  80. printf("%3d is an invalid test number.\n", testNum);
  81. return -1;
  82. }
  83. testToRun = testNum;
  84. ac--;
  85. av++;
  86. }
  87. partial_match = 0;
  88. arg = 0;
  89. /* If partial match is requested. */
  90. if(testToRun == -1 && ac > 1)
  91. {
  92. partial_match = (strcmp(av[1], "-R") == 0) ? 1 : 0;
  93. }
  94. if (partial_match && ac < 3)
  95. {
  96. printf("-R needs an additional parameter.\n");
  97. return -1;
  98. }
  99. if(testToRun == -1)
  100. {
  101. arg = lowercase(av[1 + partial_match]);
  102. }
  103. for (i =0; i < NumTests && testToRun == -1; ++i)
  104. {
  105. test_name = lowercase(cmakeGeneratedFunctionMapEntries[i].name);
  106. if (partial_match && strstr(test_name, arg) != NULL)
  107. {
  108. testToRun = i;
  109. ac -=2;
  110. av += 2;
  111. }
  112. else if (!partial_match && strcmp(test_name, arg) == 0)
  113. {
  114. testToRun = i;
  115. ac--;
  116. av++;
  117. }
  118. free(test_name);
  119. }
  120. if(arg)
  121. {
  122. free(arg);
  123. }
  124. if(testToRun != -1)
  125. {
  126. int result;
  127. @CMAKE_TESTDRIVER_BEFORE_TESTMAIN@
  128. if (testToRun < 0 || testToRun >= NumTests)
  129. {
  130. printf(
  131. "testToRun was modified by TestDriver code to an invalid value: %3d.\n",
  132. testNum);
  133. return -1;
  134. }
  135. result = (*cmakeGeneratedFunctionMapEntries[testToRun].func)(ac, av);
  136. @CMAKE_TESTDRIVER_AFTER_TESTMAIN@
  137. return result;
  138. }
  139. /* Nothing was run, display the test names. */
  140. printf("Available tests:\n");
  141. for (i =0; i < NumTests; ++i)
  142. {
  143. printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name);
  144. }
  145. printf("Failed: %s is an invalid test name.\n", av[1]);
  146. return -1;
  147. }