1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
tests += {
'name': 'commit_ts',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'regress': {
'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': [
't/001_base.pl',
't/002_standby.pl',
't/003_standby_2.pl',
't/004_restart.pl',
],
},
}
|