diff options
| author | Peter Eisentraut | 2014-11-02 14:14:36 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2014-11-02 14:17:26 +0000 |
| commit | a409b464f91e0bdf61f2b3fb81218a0e4312987b (patch) | |
| tree | b7faadd7685e00be9d244da2a252e71a7d24f2bb /src/test/perl | |
| parent | 3e81a33d799ed8c12847eb8ef1685563eeb10e7d (diff) | |
Add configure --enable-tap-tests option
Don't skip the TAP tests anymore when IPC::Run is not found. This will
fail normally now.
Diffstat (limited to 'src/test/perl')
| -rw-r--r-- | src/test/perl/TestLib.pm | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/test/perl/TestLib.pm b/src/test/perl/TestLib.pm index cdb5e31c362..46a8bece1e5 100644 --- a/src/test/perl/TestLib.pm +++ b/src/test/perl/TestLib.pm @@ -25,19 +25,9 @@ our @EXPORT = qw( use Cwd; use File::Spec; use File::Temp (); +use IPC::Run qw(run start); use Test::More; -BEGIN -{ - eval { - require IPC::Run; - import IPC::Run qw(run start); - 1; - } or do - { - plan skip_all => "IPC::Run not available"; - }; -} # Set to untranslated messages, to be able to compare program output # with expected strings. |
