Perl: Update "prove" and add its dependencies so it actually works (again)
commitb39b3f4e3e7c6cbff68007493af317e8934555ba
authorSebastian Schuberth <sschuberth@gmail.com>
Tue, 3 Jan 2012 09:44:39 +0000 (3 10:44 +0100)
committerSebastian Schuberth <sschuberth@gmail.com>
Tue, 3 Jan 2012 10:05:10 +0000 (3 11:05 +0100)
tree49bb9c2825b7e3794390e998a7fb67e5381197c1
parent4d459679118364f3e032c0b8a45ca2470d1ea2ed
Perl: Update "prove" and add its dependencies so it actually works (again)

This allows to run tests in parallel as suggested in git/t/README by using
something like

$ prove --timer --jobs 15 ./t[0-9]*.sh

This commit adds about 300 KiB of umcompressed text files, increasing the
compressed installer by about 60 KiB.

Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
49 files changed:
bin/prove
lib/perl5/5.8.8/App/Prove.pm [new file with mode: 0644]
lib/perl5/5.8.8/App/Prove/State.pm [new file with mode: 0644]
lib/perl5/5.8.8/App/Prove/State/Result.pm [new file with mode: 0644]
lib/perl5/5.8.8/App/Prove/State/Result/Test.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Base.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/Base.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/Color.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/Console.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/Console/ParallelSession.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/Console/Session.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/File.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/File/Session.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Formatter/Session.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Harness.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Harness/Beyond.pod [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Object.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Aggregator.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Grammar.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Iterator.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Iterator/Array.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Iterator/Process.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Iterator/Stream.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/IteratorFactory.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Multiplexer.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/Bailout.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/Comment.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/Plan.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/Pragma.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/Test.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/Unknown.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/Version.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Result/YAML.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/ResultFactory.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Scheduler.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Scheduler/Job.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Scheduler/Spinner.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Source.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/SourceHandler.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/SourceHandler/Executable.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/SourceHandler/File.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/SourceHandler/Handle.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/SourceHandler/Perl.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/SourceHandler/RawTAP.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/Utils.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/YAMLish/Reader.pm [new file with mode: 0644]
lib/perl5/5.8.8/TAP/Parser/YAMLish/Writer.pm [new file with mode: 0644]