From 4cbaf4dcd23846f5122356f88305a64329554d21 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Mon, 26 Jan 2026 12:43:52 -0500 Subject: [PATCH] Reduce length of TAP test file name. Buildfarm member fairywren hit the Windows limitation on the length of a file path. While there may be other things we should also do to prevent this from happening, it's certainly the case that the length of this test file name is much longer than others in the same directory, so make it shorter. Reported-by: Alexander Lakhin Discussion: http://postgr.es/m/274e0a1a-d7d2-4bc8-8b56-dd09f285715e@gmail.com Backpatch-through: 17 --- src/bin/pg_combinebackup/meson.build | 2 +- ...remental_backup_truncation_block.pl => 011_ib_truncation.pl} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/bin/pg_combinebackup/t/{011_incremental_backup_truncation_block.pl => 011_ib_truncation.pl} (100%) diff --git a/src/bin/pg_combinebackup/meson.build b/src/bin/pg_combinebackup/meson.build index 613f73a756b..a35b86f3f59 100644 --- a/src/bin/pg_combinebackup/meson.build +++ b/src/bin/pg_combinebackup/meson.build @@ -38,7 +38,7 @@ tests += { 't/008_promote.pl', 't/009_no_full_file.pl', 't/010_hardlink.pl', - 't/011_incremental_backup_truncation_block.pl', + 't/011_ib_truncation.pl', ], } } diff --git a/src/bin/pg_combinebackup/t/011_incremental_backup_truncation_block.pl b/src/bin/pg_combinebackup/t/011_ib_truncation.pl similarity index 100% rename from src/bin/pg_combinebackup/t/011_incremental_backup_truncation_block.pl rename to src/bin/pg_combinebackup/t/011_ib_truncation.pl -- 2.47.3