winetest: Add the '-n' option so one can specify a list of tests to exclude.

This commit is contained in:
Francois Gouget 2010-09-28 20:10:46 +02:00 committed by Alexandre Julliard
parent 1914f3ecae
commit 6f5a0a3a81

View file

@ -60,6 +60,7 @@ static char build_id[64];
/* filters for running only specific tests */
static char *filters[64];
static unsigned int nb_filters = 0;
static BOOL exclude_tests = FALSE;
/* Needed to check for .NET dlls */
static HMODULE hmscoree;
@ -86,17 +87,17 @@ static BOOL test_filtered_out( LPCSTR module, LPCSTR testname )
if (p) *p = 0;
len = strlen(dllname);
if (!nb_filters) return FALSE;
if (!nb_filters) return exclude_tests;
for (i = 0; i < nb_filters; i++)
{
if (!strncmp( dllname, filters[i], len ))
{
if (!filters[i][len]) return FALSE;
if (!filters[i][len]) return exclude_tests;
if (filters[i][len] != ':') continue;
if (!testname || !strcmp( testname, &filters[i][len+1] )) return FALSE;
if (!testname || !strcmp( testname, &filters[i][len+1] )) return exclude_tests;
}
}
return TRUE;
return !exclude_tests;
}
static char * get_file_version(char * file_name)
@ -1004,6 +1005,7 @@ usage (void)
" -e preserve the environment\n"
" -h print this message and exit\n"
" -m MAIL an email address to enable developers to contact you\n"
" -n exclude the specified tests\n"
" -p shutdown when the tests are done\n"
" -q quiet mode, no output at all\n"
" -o FILE put report into FILE, do not submit\n"
@ -1061,6 +1063,9 @@ int main( int argc, char *argv[] )
exit( 2 );
}
break;
case 'n':
exclude_tests = TRUE;
break;
case 'p':
poweroff = 1;
break;