1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Add configure --enable-tap-tests option

Don't skip the TAP tests anymore when IPC::Run is not found.  This will
fail normally now.
This commit is contained in:
Peter Eisentraut
2014-11-02 09:14:36 -05:00
parent 4ffa8806ee
commit 16381b2a78
6 changed files with 76 additions and 14 deletions

View File

@ -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.