Megatest

Artifact [92fdfa523c]
Login

Artifact 92fdfa523c02e4b8b23fd907ebeaacb41517eb4c:


// This file is part of Megatest.
// 
//     Megatest is free software: you can redistribute it and/or modify
//     it under the terms of the GNU General Public License as published by
//     the Free Software Foundation, either version 3 of the License, or
//     (at your option) any later version.
// 
//     Megatest is distributed in the hope that it will be useful,
//     but WITHOUT ANY WARRANTY; without even the implied warranty of
//     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//     GNU General Public License for more details.
// 
//     You should have received a copy of the GNU General Public License
//     along with Megatest.  If not, see <http://www.gnu.org/licenses/>.
//

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 | SKIP | WAIVED | FAIL | CHECK| ABORT}}";
  ]


"RUNNING" -> "COMPLETED";
"RUNNING" -> "INCOMPLETE" [label="test dead for > 24hrs"];


"LAUNCHED n/a" -> "REMOTEHOSTSTART n/a" -> "RUNNING";

}