You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2017/11/02 03:21:33 UTC

[22/50] [abbrv] incubator-edgent git commit: more test dbg output

more test dbg output

Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/ca75e6a6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/ca75e6a6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/ca75e6a6

Branch: refs/heads/develop
Commit: ca75e6a6943f7de39fb51241fbf772985498d6db
Parents: 45df006
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Thu Oct 26 17:30:05 2017 -0400
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Thu Oct 26 17:30:05 2017 -0400

----------------------------------------------------------------------
 .../test/java/org/apache/edgent/test/topology/TStreamTest.java    | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/ca75e6a6/api/topology/src/test/java/org/apache/edgent/test/topology/TStreamTest.java
----------------------------------------------------------------------
diff --git a/api/topology/src/test/java/org/apache/edgent/test/topology/TStreamTest.java b/api/topology/src/test/java/org/apache/edgent/test/topology/TStreamTest.java
index 464f8e2..30e3ffb 100644
--- a/api/topology/src/test/java/org/apache/edgent/test/topology/TStreamTest.java
+++ b/api/topology/src/test/java/org/apache/edgent/test/topology/TStreamTest.java
@@ -808,7 +808,9 @@ public abstract class TStreamTest extends TopologyAbstractTest {
                 try {
                     complete(t, tc);
                 } catch (Exception e) {
+                    // we're receiving the CancellationException here (and it percolates through waitForCompletion
                     System.err.println("MTPWE complete() threw e:"+e);
+                    e.printStackTrace();
                     throw e;
                 }
                 return true;
@@ -819,6 +821,7 @@ public abstract class TStreamTest extends TopologyAbstractTest {
             waitForCompletion(completer, executions);
         } catch (Exception e) {
             System.err.println("MTPWE waitForCompletion() threw e:"+e);
+            e.printStackTrace();
             throw e;
         }
    }