-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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 download log test #33788
base: master
Are you sure you want to change the base?
Fix download log test #33788
Conversation
a0da6e2
to
2c427ca
Compare
PR #33788: Size comparison from a2a25fb to 137aee4 Full report (85 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
PR #33788: Size comparison from a2a25fb to ebf65fc Full report (85 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
ebf65fc
to
5a97300
Compare
PR #33788: Size comparison from 3d7e23e to fc69249 Full report (85 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
PR #33788: Size comparison from 3d7e23e to 7c28d9c Full report (85 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
} | ||
|
||
void BDXDiagnosticLogsProvider::OnTimeout() | ||
{ | ||
ChipLogError(BDX, "Timeout"); | ||
VerifyOrDo(mIsAcceptReceived, SendCommandResponse(StatusEnum::kDenied)); | ||
Reset(); | ||
mTransfer.AbortTransfer(GetBdxStatusCodeFromChipError(CHIP_ERROR_TIMEOUT)); |
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.
How does the transfer get reset after this point (and similarly in OnInternalError)? My understanding is AbortTransfer will trigger a status report to be sent and then the exchange will close since no response is expected for the status report. I don't think this class calls Reset when handling those (through OnMsgToSend or OnExchangeClosing), so would the rest of the internal state still be set?
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.
Yeah I guess you are right. I looked at BDX a long time ago. From what I remember for OTA we abort transfer and then waited sometime for the status report to go through and called Reset from what I recall. We could something similar. That being said I am not sure if the test is failing due to a genuine issue or merely not cleaning up after finishing the tests and overlaps the next test. I am looking at that now. will update the PR accordingly
7c28d9c
to
423824e
Compare
PR #33788: Size comparison from c1a6391 to 423824e Full report (85 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
…twork Diagnostic log intent" to make sure the test completes. - Add a check for Diagnostic logs status report message after test - "Read Network Diagnostic log intent with a very short timeout and a very long log" to make sure the test is complete.
423824e
to
29e3fab
Compare
PR #33788: Size comparison from c05110f to 29e3fab Full report (68 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
Fix the download log test that expects a failure by waiting for the status report before continuing to the next test
Fixes: #32636