Overview
Comment: | minor clean up |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.55 |
Files: | files | file ages | folders |
SHA1: |
683ee9a7c2b9f5e685fb233955b8326d |
User & Date: | matt on 2014-07-20 14:52:40 |
Other Links: | branch diff | manifest | tags |
Context
2014-07-21
| ||
00:32 | Improved not_started handling check-in: 52afa9f03d user: matt tags: v1.55 | |
2014-07-20
| ||
14:52 | minor clean up check-in: 683ee9a7c2 user: matt tags: v1.55 | |
2014-07-18
| ||
16:21 | Added state/status sketch check-in: a208354f3d user: mrwellan tags: v1.55 | |
Changes
Added docs/megatest-state-status.dot version [45d0ee8608].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | digraph megatest_state_status { ranksep=0.05 // rankdir=LR node [shape=box,style=filled]; // subgraph cluster_notstarted { // label="Not started"; "NOT_STARTED FAILS" [ label = "{ NOT_STARTED/FAILS |{ NO_ITEMS |<here> FAIL_PREREQ |<here> FAIL_TIMEOUT }}"; shape= "record"; ] "NOT_STARTED n/a" -> "LAUNCHED n/a" [label=" launch"]; "NOT_STARTED WAIT" -> "LAUNCHED n/a" "NOT_STARTED n/a"; "NOT_STARTED WAIT" [ label = "{NOT_STARTED WAIT|{ NO_SLOTS | <here> WAIT_PREREQ}}"; shape = "record"; ] // struct3 [shape=record,label="hello\nworld |{ b |{c|<here> d|e}| f}| g | h"]; "NOT_STARTED n/a" -> "NOT_STARTED FAILS"; "NOT_STARTED n/a" -> "NOT_STARTED WAIT"; "RUNNING" [ shape="record"; label="{RUNNING|{n/a|<here> PASS |<here> FAIL}}"; ] "COMPLETED" [ shape="record"; label = "{COMPLETED|{PASS | <here> FAIL |<here> CHECK|<here> SKIP}}"; ] "RUNNING" -> "COMPLETED"; "RUNNING" -> "INCOMPLETE" [label="test dead for > 24hrs"]; "LAUNCHED n/a" -> "REMOTEHOSTSTART n/a" -> "RUNNING"; } |