-
Notifications
You must be signed in to change notification settings - Fork 600
fix unhandled tuple #5159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix unhandled tuple #5159
Conversation
6064d67 to
9732f68
Compare
decoNR
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice that you have added tests, thanks!
| 'clusterfuzz._internal.platforms.android.settings.get_build_product', | ||
| ]) | ||
|
|
||
| def test_default(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This and the following tests are missing doc strings, please add it to them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure!
| return _get_prefix_and_full_hash(android_kernel_repo_data, | ||
| kernel_partial_hash) | ||
|
|
||
| return None, None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you know why here is returned None, None and line 117 returns None?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is a bug, definitely.
|
Please fix check Run basic tests / build (pull_request). |
Signed-off-by: Javan Lacerda <[email protected]>
9732f68 to
091447b
Compare
Signed-off-by: Javan Lacerda <[email protected]>
|
Okey but it's just Planning my whole android System and also Right Now my
Mobile Is fully no Perfect Understanding By Using My Side (Resources Are
Fully Dispatched) so Right Now I am finding My correct Address/ and
Maintain my All important Docu and Existing Collection the Mistake also ..(
Or main Thing Is Working Or Automatically Generate integrate Was
Vaulnarable ( Raw ) citations Is scary As My Experience So I am Right now
so Secure And Not Setup again Did Mistake.(Own personal hand 💌'If
grammarly mistake then Sorry 🙂
Shakib
…On Tue, 10 Feb 2026, 22:33 Javan Lacerda, ***@***.***> wrote:
Merged #5159 <#5159> into
master.
—
Reply to this email directly, view it on GitHub
<#5159 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/B332O6OSWYZNN7232TVPYKT4LIB4ZAVCNFSM6AAAAACUQYI5DOVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMRSGY3TSNJZHA2DGOA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
fix b/482257453
Update get_kernel_hash_and_build_id to return a tuple with None, None if the match fails. It avoids to have
TypeError: cannot unpack non-iterable NoneType object.It also create unit tests for src/clusterfuzz/_internal/platforms/android/kernel_utils.py.