Re: Bail out! questions

2006-07-09 Thread Ovid
- Original Message From: Ian Langworth <[EMAIL PROTECTED]> > When you say "any message after these words," does that include words > on subsequent lines? > > If it does, there isn't much parsing left to do -- the rest of the > tokens in the stream get treated as a big diagnostic blob. Th

Re: Bail out! questions

2006-07-09 Thread Ian Langworth
When you say "any message after these words," does that include words on subsequent lines? If it does, there isn't much parsing left to do -- the rest of the tokens in the stream get treated as a big diagnostic blob. If it doesn't, the easiest thing to do would be to stop the parser and complain

Re: Bail out! questions

2006-07-09 Thread Ian Langworth
When you say "any message after these words," does that include words on subsequent lines? If it does, there isn't much parsing left to do -- the rest of the tokens in the stream get treated as a big diagnostic blob. If it doesn't, the easiest thing to do would be to stop the parser and complain

Bail out! questions

2006-07-08 Thread Ovid
>From TAP.pm: -- Bail out! As an emergency measure a test script can decide that further tests are useless (e.g. missing dependencies) and testing should stop immediately. In that case the test script prints the magic words Bail out! to standard output. Any message after these words m