From b56f9d349c97db3f3d1db1508cd99ad0ac90e35d Mon Sep 17 00:00:00 2001 From: Takeshi Nakatani Date: Mon, 20 Oct 2025 10:32:22 +0000 Subject: [PATCH] Temporary test error workaround in Ubuntu 25.10 --- test/integration-test-main.sh | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/test/integration-test-main.sh b/test/integration-test-main.sh index f041fa4..04c180a 100755 --- a/test/integration-test-main.sh +++ b/test/integration-test-main.sh @@ -3035,17 +3035,27 @@ function add_all_tests { add_tests test_pjdfstest_ftruncate add_tests test_pjdfstest_granular add_tests test_pjdfstest_link - add_tests test_pjdfstest_mkdir - add_tests test_pjdfstest_mkfifo add_tests test_pjdfstest_mknod add_tests test_pjdfstest_open add_tests test_pjdfstest_posix_fallocate - add_tests test_pjdfstest_rename - add_tests test_pjdfstest_rmdir - add_tests test_pjdfstest_symlink add_tests test_pjdfstest_truncate add_tests test_pjdfstest_unlink add_tests test_pjdfstest_utimensat + + # [NOTE][TODO] + # Temporary error workaround in Ubuntu 25.10 + # In Ubuntu 25.10, there are test cases where the request header size exceeds + # 8192 bytes. + # Currently bypass running the below tests as s3proxy returns an error response. + # If s3proxy increases the allowed header size, we will resume these tests. + # + if ! ( . /etc/os-release 2>/dev/null && [ "${ID}" = "ubuntu" ] && [ "${VERSION_ID}" = "25.10" ] ); then + add_tests test_pjdfstest_mkdir + add_tests test_pjdfstest_mkfifo + add_tests test_pjdfstest_rename + add_tests test_pjdfstest_rmdir + add_tests test_pjdfstest_symlink + fi fi }