Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions x-pack/qa/evil-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ dependencies {
}

unitTest {
if (project.runtimeJavaVersion >= JavaVersion.VERSION_1_9) {
systemProperty 'java.locale.providers', 'COMPAT'
}
systemProperty 'tests.security.manager', 'false'
include '**/*Tests.class'
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import com.unboundid.ldap.sdk.SearchScope;

import org.elasticsearch.action.support.PlainActionFuture;
import org.elasticsearch.bootstrap.JavaVersion;
import org.elasticsearch.common.collect.Tuple;
import org.elasticsearch.common.settings.SecureString;
import org.elasticsearch.env.Environment;
Expand Down Expand Up @@ -51,9 +50,6 @@ public void testPrincipalCreationAndSearchOnLdap() throws Exception {
}

public void testClientServiceMutualAuthentication() throws PrivilegedActionException, GSSException, LoginException, ParseException {
assumeFalse("Java 15-ea causes issues with this test, see https://github.com/elastic/elasticsearch/issues/57749",
JavaVersion.current().compareTo(JavaVersion.parse("15")) >= 0);

final String serviceUserName = randomFrom(serviceUserNames);
// Client login and init token preparation
final String clientUserName = randomFrom(clientUserNames);
Expand Down