File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
qa/os/src/test/java/org/elasticsearch/packaging/test Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 53
53
import static org .hamcrest .CoreMatchers .not ;
54
54
import static org .hamcrest .Matchers .emptyString ;
55
55
import static org .hamcrest .Matchers .startsWith ;
56
- import static org .junit .Assume .assumeFalse ;
57
56
import static org .junit .Assume .assumeThat ;
58
57
import static org .junit .Assume .assumeTrue ;
59
58
60
59
public class ArchiveTests extends PackagingTestCase {
61
60
62
61
@ BeforeClass
63
62
public static void filterDistros () {
64
- // Muted on Windows see: https://github.com/elastic/elasticsearch/issues/50825
65
- assumeFalse (System .getProperty ("os.name" ).startsWith ("Windows" ));
66
-
67
63
assumeTrue ("only archives" , distribution .isArchive ());
68
64
}
69
65
@@ -143,8 +139,7 @@ public void test50StartAndStop() throws Exception {
143
139
throw e ;
144
140
}
145
141
146
- final String gcLogName = Platforms .LINUX && distribution ().hasJdk == false ? "gc.log.0.current" : "gc.log" ;
147
-
142
+ final String gcLogName = distribution ().hasJdk == false ? "gc.log.0.current" : "gc.log" ;
148
143
assertThat (installation .logs .resolve (gcLogName ), fileExists ());
149
144
ServerUtils .runElasticsearchTests ();
150
145
You can’t perform that action at this time.
0 commit comments