summaryrefslogtreecommitdiff
path: root/test/files/presentation/shutdown-deadlock/src/arrays.scala
Commit message (Collapse)AuthorAgeFilesLines
* Disabling failing tests.Paul Phillips2012-04-121-937/+0
| | | | | | | | | | I turn them over to the responsible parties. Iulian knows about the deadlock test; for philipp I presume, 07:10:29 [partest] concurrent-future.scala:97: error: not found: type FutureTimeoutException 07:10:29 [partest] throw new FutureTimeoutException(null) 07:10:29 [partest] ^ 07:10:29 [partest] one error found
* Fix deadlocks occurring during presentation compiler shutdown.Iulian Dragos2012-03-051-0/+937
During shutdown, other threads can still post work items on the work queue. They will never be serviced, leading to clients waiting forever. The fix is to replace the implementation of the queue with a 'always fail' implementation during shutdown. Review by @odersky.