From: Andrew Dunstan Date: Sun, 13 Apr 2025 18:39:45 +0000 (-0400) Subject: Make AIO error test more portable X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=64e193f5dda2075ecc6356625992e190a4347df6;p=users%2Frhaas%2Fpostgres.git Make AIO error test more portable Alpine Linux's C library (musl) spells one error message differently. Reported-by: Wolfgang Walther --- diff --git a/src/test/modules/test_aio/t/001_aio.pl b/src/test/modules/test_aio/t/001_aio.pl index c136d8ee8f..ef4e5247e5 100644 --- a/src/test/modules/test_aio/t/001_aio.pl +++ b/src/test/modules/test_aio/t/001_aio.pl @@ -813,7 +813,7 @@ SELECT invalidate_rel_block('tbl_ok', 2); "first hard IO error is reported", qq(SELECT count(*) FROM tbl_ok), qr/^$/, - qr/ERROR:.*could not read blocks 2\.\.2 in file \"base\/.*\": Input\/output error/ + qr!ERROR:.*could not read blocks 2\.\.2 in file "base/.*": (?:I/O|Input/output) error! ); psql_like( @@ -822,7 +822,7 @@ SELECT invalidate_rel_block('tbl_ok', 2); "second hard IO error is reported", qq(SELECT count(*) FROM tbl_ok), qr/^$/, - qr/ERROR:.*could not read blocks 2\.\.2 in file \"base\/.*\": Input\/output error/ + qr!ERROR:.*could not read blocks 2\.\.2 in file "base/.*": (?:I/O|Input/output) error! ); $psql->query_safe(qq(SELECT inj_io_short_read_detach()));