924060929 commented on code in PR #9096: URL: https://github.com/apache/incubator-doris/pull/9096#discussion_r860556919
########## regression-test/framework/src/main/groovy/org/apache/doris/regression/ConfigOptions.groovy: ########## @@ -132,6 +144,15 @@ class ConfigOptions { .longOpt("groups") .desc("the suite group to be test") .build() + excludeGroupsOpt = Option.builder("xg") + .argName("excludeGroups") + .required(false) + .hasArg(true) + .optionalArg(true) + .type(String.class) + .longOpt("groups") + .desc("the suite group will not be tested") Review Comment: done ########## regression-test/framework/src/main/groovy/org/apache/doris/regression/ConfigOptions.groovy: ########## @@ -141,6 +162,15 @@ class ConfigOptions { .longOpt("directories") .desc("only the use cases in these directories can be executed") .build() + excludeDirectoriesOpt = Option.builder("xd") + .argName("directories") + .required(false) + .hasArg(true) + .optionalArg(true) + .type(String.class) + .longOpt("directories") Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org