Merge pull request #14283 from hashicorp/f-java-corretto-test-case

drivers/java: add parsing test case for corretto 17
This commit is contained in:
Seth Hoenig 2022-08-24 15:28:20 -05:00 committed by GitHub
commit 6398548ebd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -78,6 +78,15 @@ func TestDriver_parseJavaVersionOutput(t *testing.T) {
`OpenJDK Runtime Environment 18.9 (build 11.0.11+9-LTS)`,
`OpenJDK 64-Bit Server VM 18.9 (build 11.0.11+9-LTS, mixed mode, sharing)`,
},
{
"Corretto 17 on Ubuntu 22.04",
`openjdk version "17.0.4.1" 2022-08-12 LTS
OpenJDK Runtime Environment Corretto-17.0.4.9.1 (build 17.0.4.1+9-LTS)
OpenJDK 64-Bit Server VM Corretto-17.0.4.9.1 (build 17.0.4.1+9-LTS, mixed mode, sharing)`,
`17.0.4.1`,
`OpenJDK Runtime Environment Corretto-17.0.4.9.1 (build 17.0.4.1+9-LTS)`,
`OpenJDK 64-Bit Server VM Corretto-17.0.4.9.1 (build 17.0.4.1+9-LTS, mixed mode, sharing)`,
},
}
for _, c := range cases {