File tree 2 files changed +1
-31
lines changed
2 files changed +1
-31
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ if [ $# -ne 9 ] && [ $# -ne 10 ]; then
24
24
echo
25
25
echo " usage: $0 test version vm os package build platform check_external_custom"
26
26
echo " test = ${supported_tests} "
27
- echo " version = ${supported_versions} "
28
27
echo " vm = ${supported_jvms} "
29
28
echo " os = ${supported_os} "
30
29
echo " package = ${supported_packages} "
@@ -42,7 +41,6 @@ check_external_custom=$9
42
41
if [[ " ${check_external_custom} " == " 0" ]]; then
43
42
set_test $1
44
43
fi
45
- set_version $2
46
44
set_vm $3
47
45
set_os $4
48
46
set_package $5
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
#
15
-
16
- # Supported versions
17
- supported_versions=" 8 11 17 21 22"
18
-
19
15
# Supported JVMs
20
16
supported_jvms=" hotspot openj9"
21
17
@@ -32,30 +28,6 @@ supported_builds="full"
32
28
# Supported tests
33
29
supported_tests=" external_custom camel criu-functional criu-portable-checkpoint criu-portable-restore criu-ubi-portable-checkpoint criu-ubi-portable-restore derby elasticsearch jacoco jenkins functional-test kafka lucene-solr openliberty-mp-tck payara-mp-tck quarkus quarkus_quickstarts scala system-test tomcat tomee wildfly wycheproof netty spring zookeeper"
34
30
35
- function check_version() {
36
- version=$1
37
-
38
- for current_version in ${supported_versions}
39
- do
40
- if [[ " ${version} " == " ${current_version} " ]]; then
41
- return 1
42
- fi
43
- done
44
-
45
- return 0
46
- }
47
-
48
- # Set a valid version
49
- function set_version() {
50
- version=$1
51
-
52
- if (check_version ${version} ); then
53
- echo " ERROR: Invalid Version: ${version} "
54
- echo " Usage: $0 [${supported_versions} ]"
55
- exit 1
56
- fi
57
- }
58
-
59
31
function check_os() {
60
32
os=$1
61
33
@@ -213,7 +185,7 @@ function set_test_info() {
213
185
check_external_custom_test=$2
214
186
cd ../
215
187
path_to_file=$( pwd)
216
- echo ${path_to_file}
188
+ echo ${path_to_file}
217
189
PROPERTY_FILE=${path_to_file} /${test} /test.properties
218
190
github_url=$( getProperty " github_url" )
219
191
test_options=$( getProperty " test_options" )
You can’t perform that action at this time.
0 commit comments