Index: Tools/Test/Report.cls.xml
===================================================================
diff -u -r2162 -r2163
--- Tools/Test/Report.cls.xml (.../Report.cls.xml) (revision 2162)
+++ Tools/Test/Report.cls.xml (.../Report.cls.xml) (revision 2163)
@@ -248,7 +248,7 @@
. If ..IsSuccess(namespace,index,suite) { Set status="Passed", styleClass="goed" } Else {Set status="Failed",styleClass="fout" }
. If +result
. If &html<
#(status)# | >
- . Else &html<#(status_" "_$p(result,"~",2,99))# | >
+ . Else &html<#(status_" "_$tr($p(result,"~",2,99),"~",":"))# | >
. &html<>
&html<>
Quit $$$OK
@@ -303,7 +303,7 @@
. . If ..IsSuccess(namespace,index,suite,case) { Set color="green",status="Passed" } Else { Set color="red",status="Failed"}
. . If +result
. . If &html<#(status)# | >
- . . Else &html<#(status_" "_$p(result,"~",2,99))# | >
+ . . Else &html<#(status_" "_$tr($p(result,"~",2,99),"~",":"))# | >
. . &html<>
. . If $data(@GlobalForTimings@(index,case)) Do
. . . &html< #($tr(@GlobalForTimings@(index,case),".",","))# >
@@ -353,7 +353,7 @@
. If ..IsSuccess(namespace,index,suite,case,method) { Set color="green",status="Passed" } Else { Set color="red",status="Failed" }
. If +result
. If &html< | #(status)# | >
- . Else &html<#(status_" "_$p(result,"~",2,99))# | >
+ . Else &html<#(status_" "_$tr($p(result,"~",2,99),"~",":"))# | >
. &html<>
&html<>
Quit $$$OK
@@ -387,7 +387,7 @@
. Set result=@GlobalForLogging@(index,suite,case,method,action)
. &html<>
. &html<#($p(result,"~",2))# | >
- . &html<#($p(result,"~",3,99))# | >
+ . &html<#($tr($p(result,"~",3,99),"~",":"))# | >
. If ..IsSuccess(namespace,index,suite,case,method,action) { Set color="green",status="Passed" } Else { Set color="red",status="Failed" }
. &html<#(status)# | >
. &html<
>
Index: Tools/Test/Manager.cls.xml
===================================================================
diff -u -r2162 -r2163
--- Tools/Test/Manager.cls.xml (.../Manager.cls.xml) (revision 2162)
+++ Tools/Test/Manager.cls.xml (.../Manager.cls.xml) (revision 2163)
@@ -398,8 +398,8 @@
Set method=i%TheStack(i%TheStack,"method")
If method="" Quit
Set next=$o(i%TheLog(suite,case,method,""),-1)+1
- Set i%TheLog(suite,case,method,next)=success_":"_case_":"_method_":"_action_":"_description
- Set line=action_":"_description_" ("_$s(success:"passed",1:"failed")_")"
+ Set i%TheLog(suite,case,method,next)=success_"~"_case_"~"_method_"~"_action_"~"_description
+ Set line=action_"~"_description_" ("_$s(success:"passed",1:"failed")_")"
Do ..PrintLine(line,4)
If 'success Do ..PrintErrorLine(line)
Quit