winetest: Don't require a tag or email address when only running a few tests.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2017-06-27 19:12:23 +02:00
parent 33a4d90138
commit 8e3d381419
1 changed files with 6 additions and 0 deletions

View File

@ -1405,6 +1405,12 @@ int main( int argc, char *argv[] )
SetEnvironmentVariableA( "WINETEST_REPORT_SUCCESS", "0" );
}
if (nb_filters && !exclude_tests)
{
run_tests( logname, outdir );
exit(0);
}
while (!tag) {
if (!interactive)
report (R_FATAL, "Please specify a tag (-t option) if "