mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Handle old versions of Test::More
Really old versions of Test::More don't support subplans, so skip the tests in that case.
This commit is contained in:
@ -36,7 +36,14 @@ BEGIN
|
|||||||
} or do
|
} or do
|
||||||
{
|
{
|
||||||
plan skip_all => "IPC::Run not available";
|
plan skip_all => "IPC::Run not available";
|
||||||
}
|
};
|
||||||
|
|
||||||
|
eval {
|
||||||
|
Test::More->VERSION('0.93_01');
|
||||||
|
} or do
|
||||||
|
{
|
||||||
|
plan skip_all => "version of Test::More is too old to support subplans";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
# Set to untranslated messages, to be able to compare program output
|
# Set to untranslated messages, to be able to compare program output
|
||||||
|
Reference in New Issue
Block a user