don't hang in GroovyDebuggerTest
authorpeter <peter@jetbrains.com>
Sun, 29 Jan 2012 09:12:07 +0000 (10:12 +0100)
committerpeter <peter@jetbrains.com>
Sun, 29 Jan 2012 10:14:36 +0000 (11:14 +0100)
plugins/groovy/test/org/jetbrains/plugins/groovy/compiler/GroovyDebuggerTest.groovy

index c4cbb19cfe86549328dbee5faf3c6b11a981d5fa..2f13efb141e7eb2631fc81cec8090f1268aaf902 100644 (file)
@@ -47,6 +47,8 @@ import com.intellij.testFramework.builders.JavaModuleFixtureBuilder
 import com.intellij.testFramework.fixtures.impl.TempDirTestFixtureImpl
 import com.intellij.util.SystemProperties
 import com.intellij.util.concurrency.Semaphore
 import com.intellij.testFramework.fixtures.impl.TempDirTestFixtureImpl
 import com.intellij.util.SystemProperties
 import com.intellij.util.concurrency.Semaphore
+import com.intellij.execution.process.OSProcessManager
+import com.intellij.execution.process.OSProcessHandler
 
 /**
  * @author peter
 
 /**
  * @author peter
@@ -94,13 +96,21 @@ class GroovyDebuggerTest extends GroovyCompilerTestCase {
       runProcess(mainClass, myModule, DefaultDebugExecutor, [onTextAvailable: { evt, type -> if (trace) print evt.text}] as ProcessAdapter, runner)
     }
     cl.call()
       runProcess(mainClass, myModule, DefaultDebugExecutor, [onTextAvailable: { evt, type -> if (trace) print evt.text}] as ProcessAdapter, runner)
     }
     cl.call()
+    def handler = debugProcess.executionResult.processHandler
     if (trace) {
     if (trace) {
-      println "terminated1?: " + debugProcess.executionResult.processHandler.isProcessTerminated()
+      println "terminated1?: " + handler.isProcessTerminated()
     }
     resume()
     }
     resume()
-    debugProcess.executionResult.processHandler.waitFor()
+    if (!handler.waitFor(20000)) {
+      if (handler instanceof OSProcessHandler) {
+        OSProcessManager.instance.killProcessTree(handler.process)
+      } else {
+        println "can't terminate $handler"
+      }
+      fail('too long waiting for process termination')
+    }
     if (trace) {
     if (trace) {
-      println "terminated2?: " + debugProcess.executionResult.processHandler.isProcessTerminated()
+      println "terminated2?: " + handler.isProcessTerminated()
     }
   }
 
     }
   }