Skip to content

Commit

Permalink
Tagged 2.99_05, version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyA committed Oct 30, 2007
1 parent a910a4d commit 917b97e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 30 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Revision history for Test-Harness

2.99_05 2007-10-30
- Fix for occasional rogue -1 exit code on Windows.
- Fix for @INC handling under CPANPLUS.
- Added real time to prove --timer output
- Improved prove error message in case where 't' not found and
no tests named.

2.99_04 2007-10-11
- Fixed bug where 'All tests successful' would not be printed if bonus
tests are seen.
Expand Down
29 changes: 0 additions & 29 deletions META.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
name: Test-Harness
version: 2.99_05

author:
- 'Andy Armstrong C<< <andy@hexten.net> >>'
abstract: Run Perl standard test scripts with statistics
Expand All @@ -20,115 +19,87 @@ provides:
App::Prove:
file: lib/App/Prove.pm
version: 2.99_05

TAP::Base:
file: lib/TAP/Base.pm
version: 2.99_05

TAP::Formatter::Color:
file: lib/TAP/Formatter/Color.pm
version: 2.99_05

TAP::Formatter::Console:
file: lib/TAP/Formatter/Console.pm
version: 2.99_05

TAP::Formatter::Console::ParallelSession:
file: lib/TAP/Formatter/Console/ParallelSession.pm
version: 2.99_05

TAP::Formatter::Console::Session:
file: lib/TAP/Formatter/Console/Session.pm
version: 2.99_05

TAP::Harness:
file: lib/TAP/Harness.pm
version: 2.99_05

TAP::Parser:
file: lib/TAP/Parser.pm
version: 2.99_05

TAP::Parser::Aggregator:
file: lib/TAP/Parser/Aggregator.pm
version: 2.99_05

TAP::Parser::Grammar:
file: lib/TAP/Parser/Grammar.pm
version: 2.99_05

TAP::Parser::Iterator:
file: lib/TAP/Parser/Iterator.pm
version: 2.99_05

TAP::Parser::Iterator::Array:
file: lib/TAP/Parser/Iterator/Array.pm
version: 2.99_05

TAP::Parser::Iterator::Process:
file: lib/TAP/Parser/Iterator/Process.pm
version: 2.99_05

TAP::Parser::Iterator::Stream:
file: lib/TAP/Parser/Iterator/Stream.pm
version: 2.99_05

TAP::Parser::Multiplexer:
file: lib/TAP/Parser/Multiplexer.pm
version: 2.99_05

TAP::Parser::Result:
file: lib/TAP/Parser/Result.pm
version: 2.99_05

TAP::Parser::Result::Bailout:
file: lib/TAP/Parser/Result/Bailout.pm
version: 2.99_05

TAP::Parser::Result::Comment:
file: lib/TAP/Parser/Result/Comment.pm
version: 2.99_05

TAP::Parser::Result::Plan:
file: lib/TAP/Parser/Result/Plan.pm
version: 2.99_05

TAP::Parser::Result::Test:
file: lib/TAP/Parser/Result/Test.pm
version: 2.99_05

TAP::Parser::Result::Unknown:
file: lib/TAP/Parser/Result/Unknown.pm
version: 2.99_05

TAP::Parser::Result::Version:
file: lib/TAP/Parser/Result/Version.pm
version: 2.99_05

TAP::Parser::Result::YAML:
file: lib/TAP/Parser/Result/YAML.pm
version: 2.99_05

TAP::Parser::Source:
file: lib/TAP/Parser/Source.pm
version: 2.99_05

TAP::Parser::Source::Perl:
file: lib/TAP/Parser/Source/Perl.pm
version: 2.99_05

TAP::Parser::YAMLish::Reader:
file: lib/TAP/Parser/YAMLish/Reader.pm
version: 2.99_05

TAP::Parser::YAMLish::Writer:
file: lib/TAP/Parser/YAMLish/Writer.pm
version: 2.99_05

Test::Harness:
file: lib/Test/Harness.pm
version: 2.99_05

generated_by: Module::Build version 0.2808
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
Expand Down
2 changes: 1 addition & 1 deletion lib/TAP/Parser/Source/Perl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ sub _get_command {

sub _libs2switches {
my $self = shift;
return map {"-I$_"} @_;
return map {"-I$_"} grep {$_} @_;
}

sub _switches {
Expand Down

0 comments on commit 917b97e

Please sign in to comment.