Andy Armstrong wrote: > I've added to TAP::Parser an experimental YAML syntax for embedding > machine readable diagnostic information in TAP streams. The syntax looks > like this: > > 1..5 > ok 1 > ok 2 > --- > - > fnurk: skib > ponk: gleeb > - > bar: krup > foo: plink > ...
That should be this: 1..5 ok 1 ok 2 #--- - fnurk: skib ponk: gleeb - bar: krup foo: plink ... ok 3 The reason being that the parser should know if there's diagnostics forthcoming for the current test. This allows a TAP displayer to display the complete information for a test without having to wait, possibly a long time, for the next test line.