diff options
Diffstat (limited to 'src/bin/pg_ctl/t/002_status.pl')
-rw-r--r-- | src/bin/pg_ctl/t/002_status.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/pg_ctl/t/002_status.pl b/src/bin/pg_ctl/t/002_status.pl index 38c901f88a1..2503d74a76d 100644 --- a/src/bin/pg_ctl/t/002_status.pl +++ b/src/bin/pg_ctl/t/002_status.pl @@ -6,7 +6,7 @@ use warnings; use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; -use Test::More tests => 3; +use Test::More; my $tempdir = PostgreSQL::Test::Utils::tempdir; @@ -25,3 +25,5 @@ command_exit_is([ 'pg_ctl', 'status', '-D', $node->data_dir ], 0, 'pg_ctl status with server running'); system_or_bail 'pg_ctl', 'stop', '-D', $node->data_dir; + +done_testing(); |