/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/modules/test_checksums/meson.build
38 строк
841 B
Daniel Gustafsson
Online enabling and disabling of data checksums
03 апр 2026, 23:58
03 апр 2026, 23:58
f19c0ec
Код
Авторство
О чём код?
# Copyright (c) 2026, PostgreSQL Global Development Group test_checksums_sources = files( 'test_checksums.c', ) test_checksums = shared_module('test_checksums', test_checksums_sources, kwargs: pg_test_mod_args, ) test_install_libs += test_checksums test_install_data += files( 'test_checksums.control', 'test_checksums--1.0.sql', ) tests += { 'name': 'test_checksums', 'sd': meson.current_source_dir(), 'bd': meson.current_build_dir(), 'tap': { 'env': { 'enable_injection_points': get_option('injection_points') ? 'yes' : 'no', }, 'tests': [ 't/001_basic.pl', 't/002_restarts.pl', 't/003_standby_restarts.pl', 't/004_offline.pl', 't/005_injection.pl', 't/006_pgbench_single.pl', 't/007_pgbench_standby.pl', 't/008_pitr.pl', 't/009_fpi.pl', ], }, }