Ignore:
Timestamp:
Feb 2, 2011, 4:51:29 PM (14 years ago)
Author:
mmc
Message:

Part 1 of a major reorganization of content. Moving "instant" to "builder"
and setting up "builder" more like the "gui" part as a package. Moving the
Rappture::object stuff from the builder into the main installation, so it
can be shared by the tester as well. Moving "driver" into gui/scripts
where it belongs. Creating a new "launcher.tcl" script that decides
which of the three parts to launch based on command line options. Still
need to sort out the Makefiles to get this all right...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tester/testview.tcl

    r2077 r2080  
    144144                    set color $itk_option(-statusfailcolor)
    145145                }
     146                Running - Waiting {
     147                    set smesg "Test waiting to run"
     148                    set sicon [Rappture::icon wait64]
     149                    set color $itk_option(-statuspasscolor)
     150                }
    146151                default { error "unknown test state \"[$obj getResult]\"" }
    147152            }
     
    161166        }
    162167        default {
    163             array set states { ? 0  Pass 0  Fail 0  total 0 }
     168            array set states { ? 0  Pass 0  Fail 0  Running 0  Waiting 0  total 0 }
    164169            foreach obj $_testobjs {
    165170                incr states(total)
Note: See TracChangeset for help on using the changeset viewer.