Skip to content

Instantly share code, notes, and snippets.

@cpinter
Created January 29, 2020 21:12
Show Gist options
  • Save cpinter/29b3244c8a4a63390c8b9fe837d389ba to your computer and use it in GitHub Desktop.
Save cpinter/29b3244c8a4a63390c8b9fe837d389ba to your computer and use it in GitHub Desktop.
Generated test file causing build error with VTK 8.90 with Slicer 4.11
#include <ctype.h> /* NOLINT */
#include <stdio.h> /* NOLINT */
#include <stdlib.h> /* NOLINT */
#include <string.h> /* NOLINT */
#if defined(_MSC_VER)
#pragma warning(disable : 4996) /* deprecation */
#endif
#include "vtkWin32OutputWindow.h"
#include "vtkMRMLDebugLeaksMacro.h"
/* Forward declare test functions. */
int vtkSlicerDataStoreLogicTest(int, char*[]);
int qSlicerDataStoreModuleTest(int, char*[]);
#ifdef __cplusplus
#define CM_CAST(TYPE, EXPR) static_cast<TYPE>(EXPR)
#else
#define CM_CAST(TYPE, EXPR) (TYPE)(EXPR)
#endif
/* Create map. */
typedef int (*MainFuncPointer)(int, char* []); /* NOLINT */
typedef struct /* NOLINT */
{
const char* name;
MainFuncPointer func;
} functionMapEntry;
static functionMapEntry cmakeGeneratedFunctionMapEntries[] = {
{
"vtkSlicerDataStoreLogicTest",
vtkSlicerDataStoreLogicTest
},
{
"qSlicerDataStoreModuleTest",
qSlicerDataStoreModuleTest
},
{ NULL, NULL } /* NOLINT */
};
static const int NumTests = CM_CAST(int,
sizeof(cmakeGeneratedFunctionMapEntries) / sizeof(functionMapEntry)) - 1;
/* Allocate and create a lowercased copy of string
(note that it has to be free'd manually) */
static char* lowercase(const char* string)
{
char *new_string, *p;
size_t stringSize;
stringSize = CM_CAST(size_t, strlen(string) + 1);
new_string = CM_CAST(char*, malloc(sizeof(char) * stringSize));
if (new_string == NULL) { /* NOLINT */
return NULL; /* NOLINT */
}
strcpy(new_string, string);
for (p = new_string; *p != 0; ++p) {
*p = CM_CAST(char, tolower(*p));
}
return new_string;
}
int main(int ac, char* av[])
{
int i, testNum = 0, partial_match;
char *arg;
int testToRun = -1;
/* If no test name was given */
/* process command line with user function. */
if (ac < 2) {
/* Ask for a test. */
printf("Available tests:\n");
for (i = 0; i < NumTests; ++i) {
printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name);
}
printf("To run a test, enter the test number: ");
fflush(stdout);
if (scanf("%d", &testNum) != 1) {
printf("Couldn't parse that input as a number\n");
return -1;
}
if (testNum >= NumTests) {
printf("%3d is an invalid test number.\n", testNum);
return -1;
}
testToRun = testNum;
ac--;
av++;
}
partial_match = 0;
arg = NULL; /* NOLINT */
/* If partial match is requested. */
if (testToRun == -1 && ac > 1) {
partial_match = (strcmp(av[1], "-R") == 0) ? 1 : 0;
}
if (partial_match != 0 && ac < 3) {
printf("-R needs an additional parameter.\n");
return -1;
}
if (testToRun == -1) {
arg = lowercase(av[1 + partial_match]);
}
for (i = 0; i < NumTests && testToRun == -1; ++i) {
char *test_name = lowercase(cmakeGeneratedFunctionMapEntries[i].name);
if (partial_match != 0 && strstr(test_name, arg) != NULL) { /* NOLINT */
testToRun = i;
ac -= 2;
av += 2;
} else if (partial_match == 0 && strcmp(test_name, arg) == 0) {
testToRun = i;
ac--;
av++;
}
free(test_name);
}
free(arg);
if (testToRun != -1) {
int result;
// Direct VTK messages to standard output
#ifdef WIN32
vtkWin32OutputWindow* outputWindow =
vtkWin32OutputWindow::SafeDownCast(vtkOutputWindow::GetInstance());
if (outputWindow)
{
#if VTK_MAJOR_VERSION >= 9 || (VTK_MAJOR_VERSION >= 8 && VTK_MINOR_VERSION >= 90)
outputWindow->SetDisplayModeToAlwaysStdErr();
#else
outputWindow->SendToStdErrOn();
#endif
}
#endif
DEBUG_LEAKS_ENABLE_EXIT_ERROR();
if (testToRun < 0 || testToRun >= NumTests) {
printf("testToRun was modified by TestDriver code to an invalid value: "
"%3d.\n",
testNum);
return -1;
}
result = (*cmakeGeneratedFunctionMapEntries[testToRun].func)(ac, av);
return result;
}
/* Nothing was run, display the test names. */
printf("Available tests:\n");
for (i = 0; i < NumTests; ++i) {
printf("%3d. %s\n", i, cmakeGeneratedFunctionMapEntries[i].name);
}
printf("Failed: %s is an invalid test name.\n", av[1]);
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment