diff options
author | 2022-03-22 14:21:19 -0700 | |
---|---|---|
committer | 2022-03-23 00:40:28 +0000 | |
commit | ebeb86320ec5da975a4271d04fc6ef488a16741c (patch) | |
tree | 8c0d3c6742c0f692b0150e984c3c718bae536303 | |
parent | 4dd5f7ed863a1eb2148d87abb7154909bc518614 (diff) |
Update art tests to asm 9.2
Ia3429287588acc1e0784dc1fd74f9e60d2c9c6d9 replaced asm-7.0.jar with
asm-9.2.jar.
Test: treehugger
Change-Id: I94b0bdb974e75be9af16e84b985361e387c40342
-rwxr-xr-x | test/1948-obsolete-const-method-handle/util-src/build-classes | 2 | ||||
-rwxr-xr-x | test/2034-spaces-in-SimpleName/build | 2 | ||||
-rwxr-xr-x | test/952-invoke-custom/build | 2 | ||||
-rwxr-xr-x | test/979-const-method-handle/build | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/1948-obsolete-const-method-handle/util-src/build-classes b/test/1948-obsolete-const-method-handle/util-src/build-classes index 9b3c5a6969..19fdc016c5 100755 --- a/test/1948-obsolete-const-method-handle/util-src/build-classes +++ b/test/1948-obsolete-const-method-handle/util-src/build-classes @@ -24,7 +24,7 @@ if [[ -z "${ANDROID_BUILD_TOP}" ]]; then fi SCRIPT_PATH=$( cd $(dirname $0) ; pwd -P ) -ASM_CLASSPATH="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-7.0.jar" +ASM_CLASSPATH="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-9.2.jar" SRC_PATH="${SCRIPT_PATH}/src" BUILD_PATH="${1:-${SCRIPT_PATH}/classes}" diff --git a/test/2034-spaces-in-SimpleName/build b/test/2034-spaces-in-SimpleName/build index 79b63e11a0..8261ed2307 100755 --- a/test/2034-spaces-in-SimpleName/build +++ b/test/2034-spaces-in-SimpleName/build @@ -17,7 +17,7 @@ # Stop on failure and be verbose. set -e -x -export ASM_JAR="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-7.0.jar" +export ASM_JAR="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-9.2.jar" # generate Java bytecode with ASM cd src_gen diff --git a/test/952-invoke-custom/build b/test/952-invoke-custom/build index c96b835399..7ba1f5c039 100755 --- a/test/952-invoke-custom/build +++ b/test/952-invoke-custom/build @@ -17,7 +17,7 @@ # Stop on failure. set -e -export ASM_JAR="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-7.0.jar" +export ASM_JAR="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-9.2.jar" export ORIGINAL_JAVAC="$JAVAC" diff --git a/test/979-const-method-handle/build b/test/979-const-method-handle/build index 31d2cbf951..8ba28756b1 100755 --- a/test/979-const-method-handle/build +++ b/test/979-const-method-handle/build @@ -17,7 +17,7 @@ # make us exit on a failure set -e -export ASM_JAR="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-7.0.jar" +export ASM_JAR="${ANDROID_BUILD_TOP}/prebuilts/misc/common/asm/asm-9.2.jar" export ORIGINAL_JAVAC="$JAVAC" |