dweiss commented on issue #16121: URL: https://github.com/apache/lucene/issues/16121#issuecomment-4533280188
This isn't a regression from 15949 - it's how it worked before as well. When you pass `tests.iters`, the runner generates synthetic tests for each iteration (junit4 can't handle identical test names well for reiterations). When you filter from gradle-level, it won't find a test named `TestDocValuesQueries.testDuelPointRangeNumericRangeQuery`. Try this: ``` ./gradlew test -p lucene/core --tests 'TestDocValuesQueries.testDuelPointRangeNumericRangeQuery*' -Dtests.iters=10 ``` and it'll work as expected (`-p lucene/core` is there to narrow down filtering to just one project, it's not relevant here but useful to speed things up). -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
