Add error pattern checks for some TAP tests for non-existing objects
[pgsql.git] / src / bin / pg_config / meson.build
bloba245e752cbd9956662d2aac393b2368ff8b298d8
1 # Copyright (c) 2022-2025, PostgreSQL Global Development Group
3 pg_config_sources = files(
4   'pg_config.c',
7 if host_system == 'windows'
8   pg_config_sources += rc_bin_gen.process(win32ver_rc, extra_args: [
9     '--NAME', 'pg_config',
10     '--FILEDESC', 'pg_config - report configuration information',])
11 endif
13 pg_config = executable('pg_config',
14   pg_config_sources,
15   dependencies: [frontend_code],
16   kwargs: default_bin_args,
18 bin_targets += pg_config
20 tests += {
21   'name': 'pg_config',
22   'sd': meson.current_source_dir(),
23   'bd': meson.current_build_dir(),
24   'tap': {
25     'tests': [
26       't/001_pg_config.pl',
27     ],
28   },
31 subdir('po', if_found: libintl)