diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/test/postmaster/meson.build | 5 | ||||
-rw-r--r-- | src/test/postmaster/t/001_basic.pl | 13 | ||||
-rw-r--r-- | src/test/postmaster/t/002_connection_limits.pl (renamed from src/test/postmaster/t/001_connection_limits.pl) | 0 | ||||
-rw-r--r-- | src/test/postmaster/t/003_start_stop.pl (renamed from src/test/postmaster/t/002_start_stop.pl) | 0 |
4 files changed, 16 insertions, 2 deletions
diff --git a/src/test/postmaster/meson.build b/src/test/postmaster/meson.build index 07c09e496cb..0ab32b42f2e 100644 --- a/src/test/postmaster/meson.build +++ b/src/test/postmaster/meson.build @@ -6,8 +6,9 @@ tests += { 'bd': meson.current_build_dir(), 'tap': { 'tests': [ - 't/001_connection_limits.pl', - 't/002_start_stop.pl', + 't/001_basic.pl', + 't/002_connection_limits.pl', + 't/003_start_stop.pl', ], }, } diff --git a/src/test/postmaster/t/001_basic.pl b/src/test/postmaster/t/001_basic.pl new file mode 100644 index 00000000000..fb3984bb287 --- /dev/null +++ b/src/test/postmaster/t/001_basic.pl @@ -0,0 +1,13 @@ + +# Copyright (c) 2021-2025, PostgreSQL Global Development Group + +use strict; +use warnings FATAL => 'all'; +use PostgreSQL::Test::Utils; +use Test::More; + +program_help_ok('postgres'); +program_version_ok('postgres'); +program_options_handling_ok('postgres'); + +done_testing(); diff --git a/src/test/postmaster/t/001_connection_limits.pl b/src/test/postmaster/t/002_connection_limits.pl index 8cfa6e0ced5..8cfa6e0ced5 100644 --- a/src/test/postmaster/t/001_connection_limits.pl +++ b/src/test/postmaster/t/002_connection_limits.pl diff --git a/src/test/postmaster/t/002_start_stop.pl b/src/test/postmaster/t/003_start_stop.pl index 036b296f72b..036b296f72b 100644 --- a/src/test/postmaster/t/002_start_stop.pl +++ b/src/test/postmaster/t/003_start_stop.pl |