Skip to content

Commit

Permalink
Skip testCreateSplitIndexToN on Windows (#93517) (#93643) (#93647)
Browse files Browse the repository at this point in the history
The forgotten cherry-pick of #93517.

Closes #92183
  • Loading branch information
pxsalehi authored Feb 9, 2023
1 parent 9f72a7a commit 153e207
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ protected boolean forbidPrivateIndexSettings() {
}

public void testCreateSplitIndexToN() throws IOException {
assumeFalse("https://github.com/elastic/elasticsearch/issues/33857", Constants.WINDOWS);

int[][] possibleShardSplits = new int[][] { { 2, 4, 8 }, { 3, 6, 12 }, { 1, 2, 4 } };
int[] shardSplits = randomFrom(possibleShardSplits);
splitToN(shardSplits[0], shardSplits[1], shardSplits[2]);
}

public void testSplitFromOneToN() {

assumeFalse("https://github.com/elastic/elasticsearch/issues/34080", Constants.WINDOWS);
assumeFalse("https://github.com/elastic/elasticsearch/issues/33857", Constants.WINDOWS);

splitToN(1, 5, 10);
client().admin().indices().prepareDelete("*").get();
Expand Down

0 comments on commit 153e207

Please sign in to comment.