diff options
author | Andres Freund <andres@anarazel.de> | 2022-12-07 12:13:35 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-12-07 12:13:35 -0800 |
commit | 3f0e786ccbf50a2f819fbf72d51ba13221adaaa1 (patch) | |
tree | 08329608a9f55fd0710ee231e0e96bf8e4ec1d8e /contrib | |
parent | 8305629afe64c9065369d022e91be9f16f3972fa (diff) | |
download | postgresql-3f0e786ccbf50a2f819fbf72d51ba13221adaaa1.tar.gz postgresql-3f0e786ccbf50a2f819fbf72d51ba13221adaaa1.zip |
meson: Add 'running' test setup, as a replacement for installcheck
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
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/basic_archive/meson.build | 3 | ||||
-rw-r--r-- | contrib/pg_freespacemap/meson.build | 3 | ||||
-rw-r--r-- | contrib/pg_stat_statements/meson.build | 4 | ||||
-rw-r--r-- | contrib/pg_walinspect/meson.build | 3 | ||||
-rw-r--r-- | contrib/test_decoding/meson.build | 5 |
5 files changed, 18 insertions, 0 deletions
diff --git a/contrib/basic_archive/meson.build b/contrib/basic_archive/meson.build index c30dcfa5d41..08d72598e9d 100644 --- a/contrib/basic_archive/meson.build +++ b/contrib/basic_archive/meson.build @@ -25,5 +25,8 @@ tests += { '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, }, } diff --git a/contrib/pg_freespacemap/meson.build b/contrib/pg_freespacemap/meson.build index 904b37b6e9b..f802e297b67 100644 --- a/contrib/pg_freespacemap/meson.build +++ b/contrib/pg_freespacemap/meson.build @@ -33,5 +33,8 @@ tests += { 'regress_args': [ '--temp-config', files('pg_freespacemap.conf') ], + # Disabled because these tests require "autovacuum=off", which + # typical runningcheck users do not have (e.g. buildfarm clients). + 'runningcheck': false, }, } diff --git a/contrib/pg_stat_statements/meson.build b/contrib/pg_stat_statements/meson.build index 854df138e76..bd0e42331eb 100644 --- a/contrib/pg_stat_statements/meson.build +++ b/contrib/pg_stat_statements/meson.build @@ -41,5 +41,9 @@ tests += { 'pg_stat_statements', ], 'regress_args': ['--temp-config', files('pg_stat_statements.conf')], + # Disabled because these tests require + # "shared_preload_libraries=pg_stat_statements", which typical + # runningcheck users do not have (e.g. buildfarm clients). + 'runningcheck': false, }, } diff --git a/contrib/pg_walinspect/meson.build b/contrib/pg_walinspect/meson.build index 4314a3182a2..351f184de83 100644 --- a/contrib/pg_walinspect/meson.build +++ b/contrib/pg_walinspect/meson.build @@ -28,6 +28,9 @@ tests += { 'sql': [ 'pg_walinspect', ], + # Disabled because these tests require "wal_level=replica", which + # some runningcheck users do not have (e.g. buildfarm clients). 'regress_args': ['--temp-config', files('walinspect.conf')], + 'runningcheck': false, }, } diff --git a/contrib/test_decoding/meson.build b/contrib/test_decoding/meson.build index 6876792fd86..65dfd3f7d88 100644 --- a/contrib/test_decoding/meson.build +++ b/contrib/test_decoding/meson.build @@ -43,6 +43,9 @@ tests += { 'regress_args': [ '--temp-config', files('logical.conf'), ], + # Disabled because these tests require "wal_level=logical", which + # typical runningcheck users do not have (e.g. buildfarm clients). + 'runningcheck': false, }, 'isolation': { 'specs': [ @@ -61,6 +64,8 @@ tests += { 'regress_args': [ '--temp-config', files('logical.conf'), ], + # see above + 'runningcheck': false, }, 'tap': { 'tests': [ |