fix small bug
This commit is contained in:
parent
fcba655f82
commit
66d008431b
2 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ def check_app_result(
|
||||||
|
|
||||||
does_reflection = False
|
does_reflection = False
|
||||||
boot_cl_id = ""
|
boot_cl_id = ""
|
||||||
for cl in data["classloaders"]:
|
for cl in data["classloaders"].values():
|
||||||
if cl["cname"] == "Ljava/lang/BootClassLoader;":
|
if cl["cname"] == "Ljava/lang/BootClassLoader;":
|
||||||
boot_cl_id = cl["id"]
|
boot_cl_id = cl["id"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import queue
|
||||||
import datetime
|
import datetime
|
||||||
import traceback
|
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"
|
ANDROID_IMG = "system-images;android-34;default;x86_64"
|
||||||
TIMEOUT = 400
|
TIMEOUT = 400
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue