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 /src/test/modules/commit_ts | |
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 'src/test/modules/commit_ts')
-rw-r--r-- | src/test/modules/commit_ts/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/modules/commit_ts/meson.build b/src/test/modules/commit_ts/meson.build index 60cb12164d2..fa86e70e880 100644 --- a/src/test/modules/commit_ts/meson.build +++ b/src/test/modules/commit_ts/meson.build @@ -6,6 +6,9 @@ tests += { 'sql': [ 'commit_timestamp', ], + # Disabled because these tests require "track_commit_timestamp = on", + # which typical runningcheck users do not have (e.g. buildfarm clients). + 'runningcheck': false, }, 'tap': { 'tests': [ |