Test::Parser::ltp - Perl module to parse output from runs of the


Test-Parser documentation  | view source Contained in the Test-Parser distribution.

Index


NAME

Top

Test::Parser::ltp - Perl module to parse output from runs of the Linux Test Project (LTP) testsuite.

SYNOPSIS

Top

 use Test::Parser::ltp;

 my $parser = new Test::Parser::ltp;
 $parser->parse($text);
 printf("Num Executed:  %8d\n", $parser->num_executed());
 printf("Num Passed:    %8d\n", $parser->num_passed());
 printf("Num Failed:    %8d\n", $parser->num_failed());
 printf("Num Skipped:   %8d\n", $parser->num_skipped());

Additional information is available from the subroutines listed below and from the Test::Parser baseclass.

DESCRIPTION

Top

This module provides a way to extract information out of LTP test run output.

FUNCTIONS

Top

Also see Test::Parser for functions available from the base class.

new()

Creates a new Test::Parser::ltp instance. Also calls the Test::Parser base class' new() routine. Takes no arguments.

Override of Test::Parser's default parse_line() routine to make it able to parse LTP output.

AUTHOR

Top

Bryce Harrington <bryce@osdl.org>

COPYRIGHT

Top

SEE ALSO

Top

Test::Parser


Test-Parser documentation  | view source Contained in the Test-Parser distribution.