blob: 1dfc4c3f87633ddf66da6d137d25e836e8d9e286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright (c) 2021-2025, PostgreSQL Global Development Group
use strict;
use warnings FATAL => 'all';
use PostgreSQL::Test::Utils;
use Test::More;
program_help_ok('pg_config');
program_version_ok('pg_config');
program_options_handling_ok('pg_config');
command_like([ 'pg_config', '--bindir' ], qr/bin/, 'pg_config single option')
; # XXX might be wrong
command_like([ 'pg_config', '--bindir', '--libdir' ],
qr/bin.*\n.*lib/, 'pg_config two options');
command_like([ 'pg_config', '--libdir', '--bindir' ],
qr/lib.*\n.*bin/, 'pg_config two options different order');
command_like(['pg_config'], qr/.*\n.*\n.*/,
'pg_config without options prints many lines');
done_testing();
|