-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-27851 Fix TestListTablesByState which is silently failing due to a surefire bug #5227
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
HBASE-27851 Fix TestListTablesByState which is silently failing due to a surefire bug #5227
Conversation
…o a surefire bug surefire version 3.0.0-M6 has a bug where tests end up being removed from the test results if they fail with a long exception message. See: https://issues.apache.org/jira/browse/SUREFIRE-2079 TestListTablesByState is currently failing due to an error. However, it is being missed because of the surefire bug. I found this while testing the final surfire 3.0.0 version which fixes the bug and the test then shows up as failing. Signed-off-by: Jonathan Albrecht <jonathan.albrecht@ibm.com>
🎊 +1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
Two tests failed in the precommit checks but I don't think they are related to my changes which are just in one test class. Failed tests:
|
org.apache.hadoop.hbase.master.TestListTablesByState is now showing up in the test results: |
…o a surefire bug (#5227) surefire version 3.0.0-M6 has a bug where tests end up being removed from the test results if they fail with a long exception message. See: https://issues.apache.org/jira/browse/SUREFIRE-2079 TestListTablesByState is currently failing due to an error. However, it is being missed because of the surefire bug. I found this while testing the final surfire 3.0.0 version which fixes the bug and the test then shows up as failing. Co-authored-by: Jonathan Albrecht <jonathan.albrecht@ibm.com> Signed-off-by: Duo Zhang <zhangduo@apache.org> (cherry picked from commit 55aff4c)
Thanks for reviewing and merging @Apache9! |
Surefire version 3.0.0-M6 has a bug where tests end up being removed from the test results if they fail with a long exception message. See:
https://issues.apache.org/jira/browse/SUREFIRE-2079
TestListTablesByState is currently failing due to an error. However, it is being missed because of the surefire bug. I found this while testing the final surfire 3.0.0 version which fixes the bug and the test then shows up as failing.