NEW - bug 330155: [releng] modularize Mylyn build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330155
diff --git a/org.eclipse.mylyn.commons.tests/src/org/eclipse/mylyn/commons/tests/support/ManagedTestSuite.java b/org.eclipse.mylyn.commons.tests/src/org/eclipse/mylyn/commons/tests/support/ManagedTestSuite.java
index c15d003..9825d10 100644
--- a/org.eclipse.mylyn.commons.tests/src/org/eclipse/mylyn/commons/tests/support/ManagedTestSuite.java
+++ b/org.eclipse.mylyn.commons.tests/src/org/eclipse/mylyn/commons/tests/support/ManagedTestSuite.java
@@ -36,8 +36,11 @@
 
 		private final Test test;
 
+		private final Thread testThread;
+
 		public DumpThreadTask(Test test) {
 			this.test = test;
+			this.testThread = Thread.currentThread();
 		}
 
 		@Override
@@ -56,6 +59,9 @@
 				sb.append("\n");
 			}
 			System.err.println(sb.toString());
+
+			System.err.println("Sending interrupt to thread: " + testThread.toString());
+			testThread.interrupt();
 		}
 
 	}