mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
3f0e786ccb
To run all tests that support running against existing server: $ meson test --setup running To run just the main pg_regress tests against existing server: $ meson test --setup running regress-running/regress To ensure the 'running' setup continues to work, test it as part of the freebsd CI task. Discussion: https://postgr.es/m/CAH2-Wz=XDQcmLoo7RR_i6FKQdDmcyb9q5gStnfuuQXrOGhB2sQ@mail.gmail.com
33 lines
834 B
Meson
33 lines
834 B
Meson
basic_archive_sources = files(
|
|
'basic_archive.c',
|
|
)
|
|
|
|
if host_system == 'windows'
|
|
basic_archive_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
|
|
'--NAME', 'basic_archive',
|
|
'--FILEDESC', 'basic_archive - basic archive module',])
|
|
endif
|
|
|
|
basic_archive = shared_module('basic_archive',
|
|
basic_archive_sources,
|
|
kwargs: contrib_mod_args,
|
|
)
|
|
contrib_targets += basic_archive
|
|
|
|
tests += {
|
|
'name': 'basic_archive',
|
|
'sd': meson.current_source_dir(),
|
|
'bd': meson.current_build_dir(),
|
|
'regress': {
|
|
'sql': [
|
|
'basic_archive',
|
|
],
|
|
'regress_args': [
|
|
'--temp-config', files('basic_archive.conf'),
|
|
],
|
|
# Disabled because these tests require "shared_preload_libraries=basic_archive",
|
|
# which typical runningcheck users do not have (e.g. buildfarm clients).
|
|
'runningcheck': false,
|
|
},
|
|
}
|