Skip to content

Commit 439b06e

Browse files
committed
ci
1 parent 650218f commit 439b06e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/test/java/TreeDiffingTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ private static Stream<TestCase> testCases() throws IOException {
7979
@ParameterizedTest
8080
@MethodSource("testCases")
8181
public void testCase(TestCase testCase) throws IOException, DiffParseException {
82+
try {
8283
VariationTree<DiffLinesLabel> beforeEdit = parseVariationTree(testCase.beforeEdit());
8384
VariationTree<DiffLinesLabel> afterEdit = parseVariationTree(testCase.afterEdit());
8485

@@ -112,6 +113,11 @@ public void testCase(TestCase testCase) throws IOException, DiffParseException {
112113
));
113114
}
114115
}
116+
} catch (Throwable e) {
117+
System.out.format("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Failure in %s %s\n", testCase.basename(), testCase.matcherName());
118+
e.printStackTrace();
119+
throw e;
120+
}
115121
}
116122

117123
public VariationTree<DiffLinesLabel> parseVariationTree(Path filename) throws IOException, DiffParseException {

0 commit comments

Comments
 (0)