Skip to content

Commit 604722c

Browse files
committed
Mute ArchiveTests for now until
see #116299
1 parent 009c0a5 commit 604722c

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

qa/packaging/src/test/java/org/elasticsearch/packaging/test/ArchiveTests.java

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import org.elasticsearch.packaging.util.ServerUtils;
2020
import org.elasticsearch.packaging.util.Shell;
2121
import org.elasticsearch.packaging.util.Shell.Result;
22-
import org.junit.Assume;
2322
import org.junit.BeforeClass;
2423

2524
import java.nio.file.Files;
@@ -49,6 +48,7 @@
4948
import static org.junit.Assume.assumeThat;
5049
import static org.junit.Assume.assumeTrue;
5150

51+
@PackagingTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/116299")
5252
public class ArchiveTests extends PackagingTestCase {
5353

5454
@BeforeClass
@@ -113,10 +113,6 @@ public void test32SpecialCharactersInJdkPath() throws Exception {
113113
}
114114

115115
public void test40AutoconfigurationNotTriggeredWhenNodeIsMeantToJoinExistingCluster() throws Exception {
116-
Assume.assumeFalse(
117-
"https://github.com/elastic/elasticsearch/issues/116299",
118-
distribution.platform == Distribution.Platform.WINDOWS
119-
);
120116
// auto-config requires that the archive owner and the process user be the same,
121117
Platforms.onWindows(() -> sh.chown(installation.config, installation.getOwner()));
122118
FileUtils.assertPathsDoNotExist(installation.data);
@@ -130,10 +126,6 @@ public void test40AutoconfigurationNotTriggeredWhenNodeIsMeantToJoinExistingClus
130126
}
131127

132128
public void test41AutoconfigurationNotTriggeredWhenNodeCannotContainData() throws Exception {
133-
Assume.assumeFalse(
134-
"https://github.com/elastic/elasticsearch/issues/116299",
135-
distribution.platform == Distribution.Platform.WINDOWS
136-
);
137129
// auto-config requires that the archive owner and the process user be the same
138130
Platforms.onWindows(() -> sh.chown(installation.config, installation.getOwner()));
139131
ServerUtils.addSettingToExistingConfiguration(installation, "node.roles", "[\"voting_only\", \"master\"]");
@@ -146,10 +138,6 @@ public void test41AutoconfigurationNotTriggeredWhenNodeCannotContainData() throw
146138
}
147139

148140
public void test42AutoconfigurationNotTriggeredWhenNodeCannotBecomeMaster() throws Exception {
149-
Assume.assumeFalse(
150-
"https://github.com/elastic/elasticsearch/issues/116299",
151-
distribution.platform == Distribution.Platform.WINDOWS
152-
);
153141
// auto-config requires that the archive owner and the process user be the same
154142
Platforms.onWindows(() -> sh.chown(installation.config, installation.getOwner()));
155143
ServerUtils.addSettingToExistingConfiguration(installation, "node.roles", "[\"ingest\"]");

0 commit comments

Comments
 (0)