blob: fa86e70e880bc639c1b8d8fc8dec93f0401839ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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',
],
},
}
|