From ab3470b4c793ed34be3b217a3029070ebefe7993 Mon Sep 17 00:00:00 2001 From: lanxia Date: Tue, 22 Oct 2019 09:56:43 -0400 Subject: [PATCH] Upgrade to use asm-7.2.jar in tests Some tests are using asm-7.0-beta.jar and some are using asm-7.2.jar Remove asm-7.0-beta.jar and upgrade tests to asm-7.2.jar, so we have one less dependent jar in tests [ci skip] Signed-off-by: lanxia --- test/TestConfig/scripts/tools/getDependencies.pl | 6 ------ test/functional/Java11andUp/build.xml | 6 +++--- test/functional/Java11andUp/playlist.xml | 6 +++--- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/test/TestConfig/scripts/tools/getDependencies.pl b/test/TestConfig/scripts/tools/getDependencies.pl index f066d8e43b3..a794eabffbb 100644 --- a/test/TestConfig/scripts/tools/getDependencies.pl +++ b/test/TestConfig/scripts/tools/getDependencies.pl @@ -77,11 +77,6 @@ fname => 'asm-all.jar', sha1 => '535f141f6c8fc65986a3469839a852a3266d1025' ); -my %asm_7_0 = ( - url => 'https://repository.ow2.org/nexus/content/repositories/releases/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.jar', - fname => 'asm-7.0.jar', - sha1 => '7804855908e0a5e4f98e3364fa537426d9f5329c' -); my %asm_7_2 = ( url => 'https://repository.ow2.org/nexus/content/repositories/releases/org/ow2/asm/asm/7.2/asm-7.2.jar', fname => 'asm-7.2.jar', @@ -134,7 +129,6 @@ # Put all dependent jars hash to array to prepare downloading my @jars_info = ( \%asm_all, - \%asm_7_0, \%asm_7_2, \%commons_cli, \%commons_exec, diff --git a/test/functional/Java11andUp/build.xml b/test/functional/Java11andUp/build.xml index d7eed5cef84..e651588d676 100644 --- a/test/functional/Java11andUp/build.xml +++ b/test/functional/Java11andUp/build.xml @@ -56,7 +56,7 @@ - + @@ -67,7 +67,7 @@ - + @@ -94,7 +94,7 @@ - + diff --git a/test/functional/Java11andUp/playlist.xml b/test/functional/Java11andUp/playlist.xml index b14946850e4..8cf4ebb6eb4 100644 --- a/test/functional/Java11andUp/playlist.xml +++ b/test/functional/Java11andUp/playlist.xml @@ -173,7 +173,7 @@ -Xgcpolicy:balanced $(JAVA_COMMAND) $(JVM_OPTIONS) \ - -cp $(Q)$(LIB_DIR)$(D)asm-7.0.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)GeneralTest.jar$(Q) \ + -cp $(Q)$(LIB_DIR)$(D)asm-7.2.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)GeneralTest.jar$(Q) \ org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) -testnames GarbageCollectionCondyTest \ -groups $(TEST_GROUP) \ -excludegroups $(DEFAULT_EXCLUDE); \ @@ -205,7 +205,7 @@ -Xgcpolicy:metronome $(JAVA_COMMAND) $(JVM_OPTIONS) \ - -cp $(Q)$(LIB_DIR)$(D)asm-7.0.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)GeneralTest.jar$(Q) \ + -cp $(Q)$(LIB_DIR)$(D)asm-7.2.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)GeneralTest.jar$(Q) \ org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) -testnames GarbageCollectionCondyTest \ -groups $(TEST_GROUP) \ -excludegroups $(DEFAULT_EXCLUDE); \ @@ -237,7 +237,7 @@ -Xgcpolicy:metronome $(JAVA_COMMAND) $(JVM_OPTIONS) \ - -cp $(Q)$(LIB_DIR)$(D)asm-7.0.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)GeneralTest.jar$(Q) \ + -cp $(Q)$(LIB_DIR)$(D)asm-7.2.jar$(P)$(RESOURCES_DIR)$(P)$(TESTNG)$(P)$(TEST_RESROOT)$(D)GeneralTest.jar$(Q) \ org.testng.TestNG -d $(REPORTDIR) $(Q)$(TEST_RESROOT)$(D)testng.xml$(Q) -testnames GarbageCollectionCondyTest \ -groups $(TEST_GROUP) \ -excludegroups $(DEFAULT_EXCLUDE); \