132133134135136137138139140141142
} else { builder.append( "ignoring @FailureExpected test" ); } builder.append( " (" ) .append( failureExpected.jiraKey() ) .append( ")" ); SkipLog.LOG.warn( builder.toString(), t ); } else { throw t;
133134135136137138139140141142143
115116117118119120121122123124125
} else { builder.append( "ignoring @FailureExpected test" ); } builder.append( " (" ) .append( failureExpected.jiraKey() ) .append( ")" ); reportSkip( "Failed with: " + t.toString(), builder.toString() ); } else { throw t;
116117118119120121122123124125126
114115116117118119120121122123124
181182183184185186187188189190191
return buildSkip( dialect, null, null ); } } else { if ( !dialectClass.isInstance( dialect ) ) { return buildSkip( dialect, requiresDialectAnn.comment(), requiresDialectAnn.jiraKey() ); } } } }