aboutsummaryrefslogtreecommitdiff
path: root/src/test/postmaster/t/001_basic.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/postmaster/t/001_basic.pl')
-rw-r--r--src/test/postmaster/t/001_basic.pl13
1 files changed, 13 insertions, 0 deletions
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();