-
Notifications
You must be signed in to change notification settings - Fork 941
Disabled two tests in recording_micro_allocator_test.cc #3206
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
Conversation
// "qemu: uncaught target signal 7 (Bus error) - core dumped" | ||
#if 0 | ||
TF_LITE_MICRO_TEST(TestRecordsPersistentTfLiteTensorData) { | ||
const tflite::Model* model = tflite::GetModel(kTestConvModelData); |
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.
@veblush I am suspicious of the existing kTestConvModelData (a generated convolutional model). The model we are using is from 2021, and when regenerated using the repo script, generates a very different model today. In my PR for schema buffer and custom option offsets, I generated a new model and placed it into the PR.
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.
Thanks for the pointer. I also concluded that the pre-generated test model file is misaligned, which is the culprit. I'm regenerating it in a separate PR to confirm this.
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.
See #3207
This pull request has been removed from the queue for the following reason: The merge conditions cannot be satisfied due to checks timeout. You can check the last failing draft PR here: #3208. You may have to fix your CI before adding the pull request to the queue again. If you update this pull request, to fix the CI, it will automatically be requeued once the queue conditions match again. |
95a4591 Disabled two tests for qemutest (tensorflow#3206) veblush@google.com 26.09.2025 07:12 PM
This is a temporary workaround to resolve a test failure on the main branch. This change should be reverted once the underlying issues are fixed and the tests are re-enabled.
The following tests are failing when executed with
qemu-arm
:TestRecordsPersistentTfLiteTensorData
TestRecordsPersistentTfLiteTensorQuantizationData
Repro: (From the TFLM root directory)
BUG=QuickWorkaroundOnMain