Is there some way to close tclsh on an error from an analysis rule? i.e.
open tclsh application://com.fnfr.svt.applications.tclsh command tclsh puts foo analyze contains foo When True close tclsh
Right now, because iTest hates goto, I do something like
open tclsh application://com.fnfr.svt.applications.tclsh foreach i {1} command tclsh puts foo analyze contains foo When True break ... close tclsh
Which is ugly, but gets the job done. I guess I could callProcedure closeit "tclsh", and have that procedure close it, but that's ugly, too.