kirktrue commented on PR #18795: URL: https://github.com/apache/kafka/pull/18795#issuecomment-2649651500
In the logs for the [latest Java 23 run](https://github.com/apache/kafka/actions/runs/13247421515/job/36977911422?pr=18795), I see this: ``` 2025-02-10T18:20:35.6249558Z 113 tests completed, 1 failed, 4 skipped 2025-02-10T18:20:35.6250157Z > Task :clients:quarantinedTest 2025-02-10T18:20:35.6255028Z There were failing tests. See the report at: file:///home/runner/work/kafka/kafka/clients/build/reports/tests/quarantinedTest/index.html . . . 2025-02-10T19:01:59.9044807Z 579 tests completed, 2 failed . . . 2025-02-10T19:49:19.3051863Z 4449 tests completed, 4 failed 2025-02-10T19:49:49.2039498Z > Task :core:test 2025-02-10T19:49:49.2044032Z There were failing tests. See the report at: file:///home/runner/work/kafka/kafka/core/build/reports/tests/test/index.html . . . 2025-02-10T20:28:28.0037147Z FAILURE: Build failed with an exception. 2025-02-10T20:28:28.0037751Z 2025-02-10T20:28:28.0038553Z * What went wrong: 2025-02-10T20:28:28.0038918Z Execution failed for task ':storage:test'. 2025-02-10T20:28:28.0039634Z > There were failing tests. See the report at: file:///home/runner/work/kafka/kafka/storage/build/reports/tests/test/index.html 2025-02-10T20:28:28.0040095Z 2025-02-10T20:28:28.0040200Z BUILD FAILED in 2h 1m 23s ``` The phrase `Execution failed for task` appears only once in the file: `Execution failed for task ':storage:test'` even though the `clients:quarantinedTest` and `:core:test` tasks _also_ failed. * The line `113 tests completed, 1 failed, 4 skipped` refers to the `:clients:quarantinedTest` task which includes the failure for `AbstractCoordinatorTest`. * The line `579 tests completed, 2 failed` refers to the `:storage:test` task in which there were two failures for `OffloadAndTxnConsumeFromLeaderTest` * The line `4449 tests completed, 4 failed` refers to the `:core:test` task in which `DelayedFutureTest`, `MetricsDuringTopicCreationDeletionTest`, `ReplicationQuotasTest`, and `RequestQuotaTest` failed. In all of the seven flaky tests, each failed once then succeeded on its next try. In the [latest Java 17 run](https://github.com/apache/kafka/actions/runs/13247421515/job/36977911773?pr=18795), I see it has eight flaky tests, many of which are the same as in the Java 23 run. However, it _didn't_ fail in `OffloadAndTxnConsumeFromLeaderTest`. Maybe that's a red herring 🤔 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org