summaryrefslogtreecommitdiff
path: root/test/files/presentation/shutdown-deadlock/ShutdownDeadlockTest.scala
Commit message (Collapse)AuthorAgeFilesLines
* Disabling failing tests.Paul Phillips2012-04-121-45/+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
* Increased the timeout from 5s to 60s to make the presentation compiler ↵Iulian Dragos2012-03-221-1/+1
| | | | shutdown test more resilient on slow machines.
* Fix deadlocks occurring during presentation compiler shutdown.Iulian Dragos2012-03-051-0/+45
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.