Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8bf8265

Browse files
committed
meson: tests: Adjust with_icu/ZSTD env vars for pg_dump, pg_basebackup
396d348 omitted adding with_icu to the pg_dump tests under meson. Conversely, e692727 exported ZSTD for pg_basebackup's tests, despite pg_basebackup's ZSTD support not having any tests. Reported-by: Justin Pryzby <pryzby@telsasoft.com> Discussion: https://postgr.es/m/20230226225239.GL1653@telsasoft.com
1 parent f1c3963 commit 8bf8265

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/bin/pg_basebackup/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ tests += {
8383
'env': {'GZIP_PROGRAM': gzip.path(),
8484
'TAR': tar.path(),
8585
'LZ4': program_lz4.found() ? program_lz4.path() : '',
86-
'ZSTD': program_zstd.found() ? program_zstd.path() : ''},
86+
},
8787
'tests': [
8888
't/010_pg_basebackup.pl',
8989
't/020_pg_receivewal.pl',

src/bin/pg_dump/meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ tests += {
9090
'env': {
9191
'GZIP_PROGRAM': gzip.path(),
9292
'LZ4': program_lz4.found() ? program_lz4.path() : '',
93+
'with_icu': icu.found() ? 'yes' : 'no',
9394
},
9495
'tests': [
9596
't/001_basic.pl',

0 commit comments

Comments
 (0)