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

Commit

Permalink
Added --include-dummy option.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Aug 13, 2011
1 parent fdbd756 commit e5b3284
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion test/test-automation/src/runner/runner.c
Expand Up @@ -78,6 +78,8 @@ static int enable_verbose_logger = 0;
static int userRunSeed = 0; static int userRunSeed = 0;
//! Whether or not logger should log to stdout instead of file //! Whether or not logger should log to stdout instead of file
static int log_stdout_enabled = 0; static int log_stdout_enabled = 0;
//! Whether or not dummy suite should be included to the test run
static int include_dummy_suite = 0;


//!< Size of the test and suite name buffers //!< Size of the test and suite name buffers
#define NAME_BUFFER_SIZE 1024 #define NAME_BUFFER_SIZE 1024
Expand Down Expand Up @@ -109,6 +111,8 @@ int universal_timeout = -1;
//! Defines directory separator //! Defines directory separator
#define DIRECTORY_SEPARATOR '/' #define DIRECTORY_SEPARATOR '/'


#define DUMMY_TEST_NAME "libtestdummy"

//! Name of the default stylesheet //! Name of the default stylesheet
const char *defaultXSLStylesheet = "style.xsl"; const char *defaultXSLStylesheet = "style.xsl";


Expand Down Expand Up @@ -245,12 +249,22 @@ ScanForTestSuites(char *directoryName, char *extension)
goto error; goto error;
} }



int ok = 1; // on default, we want to include all tests

// filter out all other suites but the selected test suite // filter out all other suites but the selected test suite
int ok = 1;
if(only_selected_suite) { if(only_selected_suite) {
ok = SDL_strncmp(selected_suite_name, name, NAME_BUFFER_SIZE) == 0; ok = SDL_strncmp(selected_suite_name, name, NAME_BUFFER_SIZE) == 0;
} }


if(SDL_strncmp(name, DUMMY_TEST_NAME, NAME_BUFFER_SIZE) == 0) {
if(include_dummy_suite) {
ok = 1;
} else {
ok = 0;
}
}

if(ok && SDL_strncmp(ext, extension, SDL_strlen(extension)) == 0) { if(ok && SDL_strncmp(ext, extension, SDL_strlen(extension)) == 0) {
// create test suite reference // create test suite reference
reference = (TestSuiteReference *) SDL_malloc(sizeof(TestSuiteReference)); reference = (TestSuiteReference *) SDL_malloc(sizeof(TestSuiteReference));
Expand Down Expand Up @@ -1078,6 +1092,7 @@ PrintUsage() {
printf(" -ts --name-contains SUBSTR Executes only tests that have given\n"); printf(" -ts --name-contains SUBSTR Executes only tests that have given\n");
printf(" substring in test name\n"); printf(" substring in test name\n");
printf(" -s --suite SUITE Executes only the given test suite\n"); printf(" -s --suite SUITE Executes only the given test suite\n");
printf(" --include-dummy Includes dummy test suite in the test run\n");


printf(" --version Print version information\n"); printf(" --version Print version information\n");
printf(" -h --help Print this help\n"); printf(" -h --help Print this help\n");
Expand Down Expand Up @@ -1254,6 +1269,9 @@ ParseOptions(int argc, char *argv[])
memset(selected_suite_name, 0, NAME_BUFFER_SIZE); memset(selected_suite_name, 0, NAME_BUFFER_SIZE);
strcpy(selected_suite_name, suiteName); strcpy(selected_suite_name, suiteName);
} }
else if(SDL_strcmp(arg, "--include-dummy") == 0) {
include_dummy_suite = 1;
}
else if(SDL_strcmp(arg, "--version") == 0) { else if(SDL_strcmp(arg, "--version") == 0) {
fprintf(stdout, "SDL test harness (version %s)\n", PACKAGE_VERSION); fprintf(stdout, "SDL test harness (version %s)\n", PACKAGE_VERSION);


Expand Down

0 comments on commit e5b3284

Please sign in to comment.