You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Either the filtering logic or the debug output in AbstractBugReporter is wrong. With -Dabreporter.debug=true set, I just got the following non-sensical output:
AbstractBugReporter: Filtering due to rankThreshold 20 > 20
AbstractBugReporter: Filtering due to rankThreshold 19 > 20
Neither inequality is true.
The text was updated successfully, but these errors were encountered:
The logic conditionals were entangled in an invalid way that produced
nonsense debug log messages. Simplified the logic and reduced the logic
branches to make the operation direct and thus fix the problem.
The logic conditionals were entangled in an invalid way that produced
nonsense debug log messages. Simplified the logic and reduced the logic
branches to make the operation direct and thus fix the problem.
* Fix Issue #184
The logic conditionals were entangled in an invalid way that produced
nonsense debug log messages. Simplified the logic and reduced the logic
branches to make the operation direct and thus fix the problem.
* Added unit test to prove correct behavior of priority and rank
This unit test serves as proof that the reportBug function is operating
as expected with respect to reporting based on priority and rank
threshold values.
As a bonus this test also verifies that the relaxed mode will override
any rank or priority and always report bugs found.
Either the filtering logic or the debug output in
AbstractBugReporter
is wrong. With-Dabreporter.debug=true
set, I just got the following non-sensical output:Neither inequality is true.
The text was updated successfully, but these errors were encountered: