Disable crash early jdk8 test (#11563)
This commit is contained in:
parent
99aa42a680
commit
4c8091b0b6
|
@ -13,6 +13,7 @@ import org.testcontainers.containers.output.Slf4jLogConsumer
|
|||
import org.testcontainers.containers.wait.strategy.Wait
|
||||
import org.testcontainers.utility.DockerImageName
|
||||
import org.testcontainers.utility.MountableFile
|
||||
import spock.lang.Ignore
|
||||
import spock.lang.IgnoreIf
|
||||
import spock.lang.Specification
|
||||
|
||||
|
@ -24,6 +25,12 @@ import static io.opentelemetry.smoketest.TestContainerManager.useWindowsContaine
|
|||
// java.lang.invoke.CallSite
|
||||
// This test verifies that such jvm does not crash with opentelemetry agent
|
||||
@IgnoreIf({ useWindowsContainers() })
|
||||
// com.github.dockerjava.api.exception.DockerClientException: Could not pull image: [DEPRECATION NOTICE]
|
||||
// Docker Image Format v1 and Docker Image manifest version 2, schema 1 support is disabled by default
|
||||
// and will be removed in an upcoming release. Suggest the author of docker.io/azul/zulu-openjdk:8u31
|
||||
// to upgrade the image to the OCI Format or Docker Image manifest v2, schema 2. More information
|
||||
// at https://docs.docker.com/go/deprecated-image-specs/
|
||||
@Ignore
|
||||
class CrashEarlyJdk8Test extends Specification {
|
||||
private static final Logger logger = LoggerFactory.getLogger(CrashEarlyJdk8Test)
|
||||
|
||||
|
|
Loading…
Reference in New Issue