When creating report using
BD.NET / MXUnit / Ant generated xml report
contains empty WDDX packet after XML report.
I fixed that by adding CFABORT right after XML has been generated,
patch is below.
Tero
Index: runner/HttpAntRunner.cfc
===================================================================
--- runner/HttpAntRunner.cfc (revision 1223)
+++ runner/HttpAntRunner.cfc (working copy)
@@ -52,6 +52,7 @@
</cfcase>
<cfdefaultcase>#trim(arguments.results.getJUnitXMLResults())#</
cfdefaultcase>
</cfswitch>
+ <cfabort>
</cfoutput>
</cffunction>