Skip to content

Commit

Permalink
test: Add tomcat 11 to the testsuite
Browse files Browse the repository at this point in the history
  • Loading branch information
jajik committed Aug 21, 2024
1 parent 6877c0a commit 99b92fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
<artifactId>mod_cluster-container-tomcat-10.1</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<artifactId>mod_cluster-container-tomcat-11.0</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<artifactId>mod_cluster-load-spi</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test/testsuite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ res=0
# IMG name might include specific version, we have to handle that
IMG_NOVER=$(echo $IMG | cut -d: -f1)

for tomcat_version in "9.0" "10.1"
for tomcat_version in "9.0" "10.1" "11.0"
do
IMG="$IMG_NOVER:$tomcat_version" tomcat_create $tomcat_version > /dev/null 2>&1 || exit 3
IMG="$IMG_NOVER:$tomcat_version" run_test basetests.sh "Basic tests with tomcat $tomcat_version"
Expand Down

0 comments on commit 99b92fe

Please sign in to comment.