From 8e3d381419319b32692086947aae97471aad460a Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 27 Jun 2017 19:12:23 +0200 Subject: [PATCH] winetest: Don't require a tag or email address when only running a few tests. Signed-off-by: Alexandre Julliard --- programs/winetest/main.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/programs/winetest/main.c b/programs/winetest/main.c index c8ff1026638..bfac17bdf6e 100644 --- a/programs/winetest/main.c +++ b/programs/winetest/main.c @@ -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 "