Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
suite test_queue
      family f1
          queue q1 1001 2002 3003 4004 5005 6006 7007
          task t
      endfamily
      family f2
          task a
             queue q2 1 2 3 4 5 6 8 9 10
          task b
             # notice that queue name is accessible to the trigger
             trigger /test_queue/f1:q1 > 5      
          task c
             trigger /test_queue/f2/a:q2 > 9
       endfamily
endsuite

There is a new child command --queue, that will signal when a step is active, complete, or has aborted.

...