From 96eb9662a1f87504df8449a333bcaf42911cee9c Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Tue, 3 Jun 2025 11:13:23 -0700 Subject: [PATCH] Revert "Extend orphan-inodes timeout." This reverts commit 138c7c6b498bd625a688b9f56214108ee2e6c122. The timeout value here is still exceeded by CI test jobs, and thus causing the test to fail. Signed-off-by: Auke Kok --- tests/tests/orphan-inodes.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tests/tests/orphan-inodes.sh b/tests/tests/orphan-inodes.sh index 414c747b..756f041e 100644 --- a/tests/tests/orphan-inodes.sh +++ b/tests/tests/orphan-inodes.sh @@ -70,15 +70,7 @@ done # wait for orphan scans to run t_set_all_sysfs_mount_options orphan_scan_delay_ms 1000 # also have to wait for delayed log merge work from mount -C=120 -while (( C-- )); do - brk=1 - for ino in $inos; do - inode_exists $ino && brk=0 - done - test $brk -eq 1 && break - sleep 1 -done +sleep 15 for ino in $inos; do inode_exists $ino && echo "$ino still exists" done