Help for this page

Select Code to Download


  1. or download this
    SKIP: {
       skip $num_tests, "Wasn't able to start the 'foo' daemon" if (
    ...
    
       # ... the tests that depend on foo
    }
    
  2. or download this
    eval {
       try_start('/bin/foo') or wait_for('Please start foo', '5m');
    ...
    if ($@) {
       BAIL_OUT($@);
    }