Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPawel Piech2012-07-26 22:47:06 +0000
committerPawel Piech2012-07-26 22:47:06 +0000
commit080607091967b480512ecf721103fdc77c0947ac (patch)
tree7fd2c1bd4473bf53a36dacb1db4bf27c530af66a /tests
parenta368926d6e150c0f48f68a25b6bad81f09577876 (diff)
downloadorg.eclipse.tcf-080607091967b480512ecf721103fdc77c0947ac.tar.gz
org.eclipse.tcf-080607091967b480512ecf721103fdc77c0947ac.tar.xz
org.eclipse.tcf-080607091967b480512ecf721103fdc77c0947ac.zip
Debug Tests: added more output for test timeouts.
Diffstat (limited to 'tests')
-rw-r--r--tests/plugins/org.eclipse.tcf.debug.test/src/org/eclipse/tcf/debug/test/ViewerUpdatesListener.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/org.eclipse.tcf.debug.test/src/org/eclipse/tcf/debug/test/ViewerUpdatesListener.java b/tests/plugins/org.eclipse.tcf.debug.test/src/org/eclipse/tcf/debug/test/ViewerUpdatesListener.java
index aed1b9395..c712d307d 100644
--- a/tests/plugins/org.eclipse.tcf.debug.test/src/org/eclipse/tcf/debug/test/ViewerUpdatesListener.java
+++ b/tests/plugins/org.eclipse.tcf.debug.test/src/org/eclipse/tcf/debug/test/ViewerUpdatesListener.java
@@ -268,7 +268,7 @@ public class ViewerUpdatesListener
public synchronized boolean isFinished(int flags) {
if (isTimedOut()) {
- throw new RuntimeException("Timed Out: " + toString(flags));
+ throw new RuntimeException("Timed Out: " + toString(flags) + "\nViewer:\n" + fViewer.toString());
}
if (fFailOnRedundantUpdates && !fRedundantUpdates.isEmpty()) {

Back to the top