FUNCTION
Test ROBODoc's response on a header without an end marker. ROBODoc should detect this.
SOURCE
{
my $source = <<'EOF';
/****f* Test/test
* NAME
* Test
* FUNCTION
* Test2
* SOURCE
*/
some source
and no end of the header ....
EOF
add_source( "test.c", $source );
my ($out, $err) = runrobo( qw(--src Src --doc Doc --multidoc --test) );
is( $out, '', 'no output' );
like( $err, qr/end\smarker/, 'error about end marker' );
clean();
}