Skip to content

Commit

Permalink
Merge pull request #17419 from Skyllarr/WFLY-18764
Browse files Browse the repository at this point in the history
[WFLY-18764] Update HostExcludesTestCase configuration to work with WF31
  • Loading branch information
bstansberry authored Nov 20, 2023
2 parents 3677a2e + 1376782 commit fa0ca48
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class HostExcludesTestCase extends BuildConfigurationTestBase {
private final boolean isFullDistribution = AssumeTestGroupUtil.isFullDistribution();
private final boolean isPreviewGalleonPack = AssumeTestGroupUtil.isWildFlyPreview();

private static final String MAJOR = "30.";
private static final String MAJOR = "31.";

/**
* Maintains the list of expected extensions for each host-exclude name for previous releases.
Expand Down Expand Up @@ -197,7 +197,8 @@ private enum ExtensionConf {
"org.jboss.as.messaging",
"org.jboss.as.web"
), true),
CURRENT(MAJOR, WILDFLY_29_0, getCurrentAddedExtensions(), getCurrentRemovedExtensions(), true);
WILDFLY_30_0("WildFly30.0", WILDFLY_29_0, List.of(), List.of(), true),
CURRENT(MAJOR, WILDFLY_30_0, getCurrentAddedExtensions(), getCurrentRemovedExtensions(), true);

private static List<String> getCurrentAddedExtensions() {
// If an extension is added to this list, also check if it is supplied only by wildfly-galleon-pack. If so, add it also
Expand Down

0 comments on commit fa0ca48

Please sign in to comment.