diff options
author | 2023-03-20 13:14:40 +0000 | |
---|---|---|
committer | 2023-03-21 08:58:25 +0000 | |
commit | bb5aaa84f2f65278d0dbf1cda8329f1e115651dd (patch) | |
tree | aae8bbd5b92916961259a68f89d6fdcdf6051302 /test/default_run.py | |
parent | 3c38671b48926b1cca5f329ba8726098e557210a (diff) |
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
Diffstat (limited to 'test/default_run.py')
-rwxr-xr-x | test/default_run.py | 4 |
1 files changed, 2 insertions, 2 deletions
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" |