Ignore:
Timestamp:
Jan 28, 2011 9:31:45 AM (13 years ago)
Author:
braffert
Message:

regression tester: fixes for input/output trees

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tester/testview.tcl

    r2055 r2074  
    145145            }
    146146        } else {
    147             showStatus "Test has not yet ran."
     147            showStatus "Test has not yet run."
    148148        }
    149149        updateResults
     
    239239    if {$test != ""} {
    240240        $itk_component(tabs) tab configure "Inputs" -state normal
    241         foreach {path val} [$test getInputs] {
     241        foreach pair [$test getInputs] {
     242            set path [lindex $pair 0]
     243            set val [lindex $pair 1]
    242244            $itk_component(inputs) insert end $path -data [list Value $val]
    243245        }
     
    261263    if {$test != "" && [$test hasRan] && [$test getResult] != "Error"} {
    262264        $itk_component(tabs) tab configure "Outputs" -state normal
    263         foreach {path status} [$test getOutputs] {
     265        foreach pair [$test getOutputs] {
     266            set path [lindex $pair 0]
     267            set status [lindex $pair 1]
    264268            $itk_component(outputs) insert end $path -data [list Status $status]
    265269        }
Note: See TracChangeset for help on using the changeset viewer.