The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

tap2junit - Converts TAP output to JUnit

SYNOPSIS

  tap2junit [options] <filename> <filename> ...

  Options:
    --suffix <suffix>   Suffix for JUnit output files (default ".xml")
    --verbose           Display verbose status during conversion
    --help/-?           Display brief help message
    --man               Display full documentation

DESCRIPTION

tap2junit converts TAP output to JUnit.

Give it a list of files containing TAP results and it will create a series of ????.junit.xml output files containing the JUnit representations of that TAP contained in the files.

OPTIONS

--suffix <suffix>

Specifies the suffix which is appended to all of the input files, in order to generate the filename for the JUnit XML file that is being output.

If you want to live dangerously and over-write your original TAP files, you can set this to "" and your original TAP files will be over-written.

Defaults to .xml

--verbose

Display verbose status information during the conversion (telling you which TAP file its working on).

--help/-?

Display brief help message.

--man

Displays the full documentation.

AUTHOR

Graham TerMarsch <cpan@howlingfrog.com>

COPYRIGHT

Copyright 2008-2009, Graham TerMarsch. All Rights Reserved.

This is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

TAP::Formatter::JUnit.