mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03:00
The plan is to convert the current pg_upgrade test to the TAP framework. This commit just puts a basic TAP test in place so that we can see how the build farm behaves, since the build farm client has some special knowledge of the pg_upgrade tests. Author: Michael Paquier <michael.paquier@gmail.com>
10 lines
176 B
Perl
10 lines
176 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
use TestLib;
|
|
use Test::More tests => 8;
|
|
|
|
program_help_ok('pg_upgrade');
|
|
program_version_ok('pg_upgrade');
|
|
program_options_handling_ok('pg_upgrade');
|