fix small bug

This commit is contained in:
Jean-Marie Mineau 2025-05-25 20:28:21 +00:00
parent fcba655f82
commit 66d008431b
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ def check_app_result(
does_reflection = False
boot_cl_id = ""
for cl in data["classloaders"]:
for cl in data["classloaders"].values():
if cl["cname"] == "Ljava/lang/BootClassLoader;":
boot_cl_id = cl["id"]

View file

@ -11,7 +11,7 @@ import queue
import datetime
import traceback
EMULATORS = [f"root34-{i}" for i in range(1)]
EMULATORS = [f"root34-{i}" for i in range(20)]
ANDROID_IMG = "system-images;android-34;default;x86_64"
TIMEOUT = 400