Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Possible to execute only selected tests or suites.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Jun 5, 2011
1 parent bb107a8 commit fa223b6
Showing 1 changed file with 59 additions and 5 deletions.
64 changes: 59 additions & 5 deletions test/test-automation/runner.c
Expand Up @@ -23,6 +23,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#include <sys/types.h>

#include "SDL_test.h"
Expand All @@ -37,6 +39,17 @@ typedef int (*TestCaseQuit)(void);
//!< Flag for executing tests in-process
static int execute_inproc = 0;

//!< Flag for executing only test with selected name
static int only_selected_test = 0;
//!< Flag for executing only the selected test suite
static int only_selected_suite = 0;

//<! Size of the test and suite name buffers
#define NAME_BUFFER_SIZE 256
//!< Name of the selected test
char selected_test_name[NAME_BUFFER_SIZE];
//!< Name of the selected suite
char selected_suite_name[NAME_BUFFER_SIZE];

//!< Temporary array to hold test suite names
#if defined(linux) || defined( __linux)
Expand Down Expand Up @@ -81,6 +94,7 @@ LoadTestSuite(char *testSuiteName)
return library;
}


/*!
* Loads the test case references from the given test suite.
Expand Down Expand Up @@ -128,6 +142,7 @@ LoadTestCase(void *suite, char *testName)
return test;
}


/*!
* Loads function that initialises the test case from the
* given test suite.
Expand All @@ -147,6 +162,7 @@ LoadTestCaseInit(void *suite) {
return testCaseInit;
}


/*!
* Loads function that deinitialises the executed test case from the
* given test suite.
Expand All @@ -166,6 +182,7 @@ LoadTestCaseQuit(void *suite) {
return testCaseQuit;
}


/*!
* If using out-of-proc execution of tests. This function
* will handle the return value of the child process
Expand Down Expand Up @@ -193,6 +210,7 @@ HandleTestReturnValue(int stat_lock)
return returnValue;
}


/*!
* Executes a test case. Loads the test, executes it and
* returns the tests return value to the caller.
Expand All @@ -203,11 +221,9 @@ HandleTestReturnValue(int stat_lock)
*/
int
ExecuteTest(void *suite, TestCaseReference *testReference) {
char *testname = testReference->name;

TestCaseInit testCaseInit = LoadTestCaseInit(suite);
TestCaseQuit testCaseQuit = LoadTestCaseQuit(suite);
TestCase test = (TestCase) LoadTestCase(suite, testname);
TestCase test = (TestCase) LoadTestCase(suite, testReference->name);

int retVal = 1;
if(execute_inproc) {
Expand Down Expand Up @@ -246,6 +262,7 @@ void printUsage() {
printf(" --help Print this help\n");
}


/*!
* Parse command line arguments
*
Expand All @@ -265,14 +282,30 @@ ParseOptions(int argc, char *argv[])
else if(SDL_strcmp(arg, "--help") == 0 || SDL_strcmp(arg, "-h") == 0) {
printUsage();
exit(0);
} else {
}
else if(SDL_strcmp(arg, "--test") == 0 || SDL_strcmp(arg, "-t") == 0) {
only_selected_test = 1;
char *testName = argv[++i]; //!< \todo fixme what if i == argc? segfault?

memset(selected_test_name, 0, NAME_BUFFER_SIZE); // unnecessary?
strcpy(selected_test_name, testName);
}
else if(SDL_strcmp(arg, "--suite") == 0 || SDL_strcmp(arg, "-s") == 0) {
only_selected_suite = 1;
char *suiteName = argv[++i]; //!< \todo fixme what if i == argc? segfault?

memset(selected_suite_name, 0, NAME_BUFFER_SIZE); // unnecessary?
strcpy(selected_suite_name, suiteName);
}
else {
printf("runner: unknown command '%s'\n", arg);
printUsage();
exit(0);
}
}
}


/*!
* Entry point for test runner
*
Expand All @@ -295,13 +328,34 @@ main(int argc, char *argv[])
char *testSuiteName = NULL;
int suiteCounter = 0;
for(testSuiteName = testSuiteNames[suiteCounter]; testSuiteName; testSuiteName = testSuiteNames[++suiteCounter]) {

if(only_selected_suite) {
// extract the suite name. Rips the tests/ and file suffix from the suite name
char buffer[32];
int len = strlen(testSuiteName);
int copy = len - 6 - 6;
memcpy(buffer, testSuiteName + 6, copy);
//printf("%s\n", buffer);
//char *name = strndup(testSuiteName[5], 32);

if(SDL_strncmp(selected_suite_name, buffer, NAME_BUFFER_SIZE) != 0) {
continue;
}
}

void *suite = LoadTestSuite(testSuiteName);
TestCaseReference **tests = QueryTestCases(suite);

TestCaseReference *reference = NULL;
int counter = 0;

for(reference = tests[counter]; reference; reference = tests[++counter]) {

if(only_selected_test) {
if(SDL_strncmp(selected_test_name, reference->name, NAME_BUFFER_SIZE) != 0) {
continue;
}
}

if(reference->enabled == TEST_DISABLED) {
printf("Test %s (in %s) disabled. Omitting...\n", reference->name, testSuiteName);
} else {
Expand Down

0 comments on commit fa223b6

Please sign in to comment.