| commit | 1a84f3eda03b18c4694e7f499c11b8c0d4f3da93 | [log] [tgz] |
|---|---|---|
| author | spingel | Sat Jan 22 08:14:00 2011 +0000 |
| committer | spingel | Sat Jan 22 08:14:00 2011 +0000 |
| tree | ea4e11151a824bbb0a4bf0140969ba091a5c3013 | |
| parent | b7e95651adfb571eae6e9254d50f2a91e3ce0292 [diff] |
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(); } }