*/
public void execute() throws BuildException {
if (!TaskRegistry.matchesPattern(this)) {
String msg = toString() + " doesn't match pattern. Skipped.";
log(msg, Project.MSG_INFO);
throw new TestSkippedException(msg, true);
}
log("Performing " + toString(), Project.MSG_INFO);
BuildException error = null;
AssertionWarningException warning = null;
Iterator iter = children.iterator();