Repair ALTER EXTENSION ... SET SCHEMA.
[pgsql.git] / src / test / modules / injection_points / meson.build
blob8e1b5b45391102e693895242b31324edf5f1a0a8
1 # Copyright (c) 2022-2024, PostgreSQL Global Development Group
3 if not get_option('injection_points')
4   subdir_done()
5 endif
7 injection_points_sources = files(
8   'injection_points.c',
11 if host_system == 'windows'
12   injection_points_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
13     '--NAME', 'injection_points',
14     '--FILEDESC', 'injection_points - facility for injection points',])
15 endif
17 injection_points = shared_module('injection_points',
18   injection_points_sources,
19   kwargs: pg_test_mod_args,
21 test_install_libs += injection_points
23 test_install_data += files(
24   'injection_points.control',
25   'injection_points--1.0.sql',
28 tests += {
29   'name': 'injection_points',
30   'sd': meson.current_source_dir(),
31   'bd': meson.current_build_dir(),
32   'regress': {
33     'sql': [
34       'injection_points',
35     ],
36     'regress_args': ['--dlpath', meson.build_root() / 'src/test/regress'],
37     # The injection points are cluster-wide, so disable installcheck
38     'runningcheck': false,
39   },