disable test timeouts until nightly builds have been addressed

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1372195 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-08-12 20:38:57 +00:00
parent 4f57dc4145
commit d4e264648a
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ import static com.carrotsearch.randomizedtesting.RandomizedTest.systemPropertyAs
@ThreadLeakAction({Action.WARN, Action.INTERRUPT})
@ThreadLeakLingering(linger = 20000) // Wait long for leaked threads to complete before failure. zk needs this.
@ThreadLeakZombies(Consequence.IGNORE_REMAINING_TESTS)
@TimeoutSuite(millis = 10 * (/* minutes */ 1000 * 60)) // max suite execution time.
@TimeoutSuite(millis = Integer.MAX_VALUE) // NOT YET: until nightly tests etc are factored in.
@ThreadLeakFilters(defaultFilters = true, filters = {
QuickPatchThreadsFilter.class
})