From bb5aaa84f2f65278d0dbf1cda8329f1e115651dd Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 20 Mar 2023 13:14:40 +0000 Subject: Remove uses of the extract compiler filter. Access checks tests don't need extract, they already pass -Xverify:softfail. Test: test.py Bug: 237380287 Change-Id: I7793a84e162d61f77c763af28fbeb58468cbc826 --- test/default_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/default_run.py') diff --git a/test/default_run.py b/test/default_run.py index e102311ce7..e3e5d21dbb 100755 --- a/test/default_run.py +++ b/test/default_run.py @@ -669,8 +669,8 @@ def default_run(ctx, args, **kwargs): INT_OPTS += " -Xcompiler-option --compiler-filter=verify" COMPILE_FLAGS += " --compiler-filter=verify" elif VERIFY == "s": - INT_OPTS += " -Xcompiler-option --compiler-filter=extract" - COMPILE_FLAGS += " --compiler-filter=extract" + INT_OPTS += " -Xcompiler-option --compiler-filter=verify" + COMPILE_FLAGS += " --compiler-filter=verify" DEX_VERIFY = f"{DEX_VERIFY} -Xverify:softfail" else: # VERIFY == "n" INT_OPTS += " -Xcompiler-option --compiler-filter=assume-verified" -- cgit v1.2.3-59-g8ed1b