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:
parent
33a4d90138
commit
8e3d381419
|
@ -1405,6 +1405,12 @@ int main( int argc, char *argv[] )
|
||||||
SetEnvironmentVariableA( "WINETEST_REPORT_SUCCESS", "0" );
|
SetEnvironmentVariableA( "WINETEST_REPORT_SUCCESS", "0" );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (nb_filters && !exclude_tests)
|
||||||
|
{
|
||||||
|
run_tests( logname, outdir );
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
while (!tag) {
|
while (!tag) {
|
||||||
if (!interactive)
|
if (!interactive)
|
||||||
report (R_FATAL, "Please specify a tag (-t option) if "
|
report (R_FATAL, "Please specify a tag (-t option) if "
|
||||||
|
|
Loading…
Reference in New Issue