From 6260b917a32eaf94cda89a101eea41469549b3b6 Mon Sep 17 00:00:00 2001 From: orip Date: Sun, 23 Feb 2025 00:34:28 +0200 Subject: [PATCH 1/2] Update the Frida version for the test to 16.6.6 This was needed after 33307d4 beacuse it uses the new `Module.findSymbolbyName` that was introduced in v16.6.0 --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index ea3bada8..9b0ba202 100644 --- a/test/Makefile +++ b/test/Makefile @@ -9,7 +9,7 @@ deploy_prefix := /data/local/tmp deploy_data_dir := $(deploy_prefix)/frida-java-bridge-tests deploy_cache_dir := $(deploy_data_dir)/dalvik-cache -frida_version := 16.0.1 +frida_version := 16.6.6 test_sources := $(wildcard re/frida/*.java) test_classes := $(patsubst %.java,%.class,$(test_sources)) From 1e0e6293c80ed3bc1e0e9b4642d032ca21a3465b Mon Sep 17 00:00:00 2001 From: orip Date: Sun, 23 Feb 2025 00:55:59 +0200 Subject: [PATCH 2/2] Temporarily disable x86 tests --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d77a2577..0c1eb02e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: api: [26, 27, 28, 29, 30, 31] - arch: [x86, x86_64] + arch: [x86_64] exclude: - api: 30 arch: x86