Conversation
dylanjew
reviewed
Sep 15, 2026
IvanBM18
marked this pull request as ready for review
September 15, 2026 23:28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
In a previous stack of PRs (See #5453) I made a ton of changes for improving android fuzzing overall error detection when executing test cases, but, as i got pointed out, my changes assumed that android fuzzing work exclusively under apks, so some of the checks/validations didn't take into account jobs where no APK nor PKG_NAME is provided.
This PR focus on tuning various checks/validations previously altered in the stack of Prs above, so that if in android fuzzing with a binary(with this i mean non-apk fuzzing) then we go back to the usual checks that we had in place.
Changes
tescase_manager.pynow only checks for an apk process liveness if an apk package is found.app.pydefaults to the old (non accesible by apks) dir if no apk is found.device.pywe now clean using thefindcommand, as my previous command could ignore the hidden files(e.g:.<filename>)Tests
Fuzzing is correctly executed on valid APKS:
And it continues to fail on invalid apks.