summaryrefslogtreecommitdiff
path: root/test/junit
diff options
context:
space:
mode:
Diffstat (limited to 'test/junit')
-rw-r--r--test/junit/scala/sys/process/t7350.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/junit/scala/sys/process/t7350.scala b/test/junit/scala/sys/process/t7350.scala
index 7f3e8897f2..3c0e5145e6 100644
--- a/test/junit/scala/sys/process/t7350.scala
+++ b/test/junit/scala/sys/process/t7350.scala
@@ -18,6 +18,7 @@ import scala.util.control.Exception.ignoring
class PipedProcessTest {
class ProcessMock(error: Boolean) extends Process {
var destroyCount = 0
+ def isAlive() = false
def exitValue(): Int = {
if (error) {
throw new InterruptedException()