All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fstests: generic/730: exclude btrfs for now
@ 2025-06-04  6:25 Qu Wenruo
  2025-06-04  8:25 ` Christoph Hellwig
  2025-06-05 13:55 ` Zorro Lang
  0 siblings, 2 replies; 6+ messages in thread
From: Qu Wenruo @ 2025-06-04  6:25 UTC (permalink / raw)
  To: linux-btrfs, fstests

The test case always fail for btrfs:

  generic/730       - output mismatch (see /home/adam/xfstests-dev/results//generic/730.out.bad)
    --- tests/generic/730.out	2024-04-25 18:13:45.203549435 +0930
    +++ /home/adam/xfstests-dev/results//generic/730.out.bad	2025-06-04 15:10:39.062430952 +0930
    @@ -1,2 +1 @@
     QA output created by 730
    -cat: -: Input/output error
    ...

The root reasons are:

- Btrfs doesn't support shutdown callbacks

- The current shutdown callbacks are per-fs
  Meanwhile btrfs is a multi-device fs, it needs to know which block
  device is triggerring shutdown, and needs to do extra evaluation
  (e.g. can the remaining devices support RW operations) before
  triggering a full fs shutdown.

I'm trying to improve the situation, but until then just exlucde btrfs
from the test case for now.

Signed-off-by: Qu Wenruo <wqu@suse.com>
---
 tests/generic/730 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/generic/730 b/tests/generic/730
index 6251980e..cae6489f 100755
--- a/tests/generic/730
+++ b/tests/generic/730
@@ -26,6 +26,10 @@ _require_test
 _require_block_device $TEST_DEV
 _require_scsi_debug
 
+if [ "$FSTYP" = "btrfs" ]; then
+	_notrun "btrfs doesn't support per-fs shutdown yet"
+fi
+
 size=$(_small_fs_size_mb 256)
 SCSI_DEBUG_DEV=`_get_scsi_debug_dev 512 512 0 $size`
 test -b "$SCSI_DEBUG_DEV" || _notrun "Failed to initialize scsi debug device"
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-06-06 10:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-04  6:25 [PATCH] fstests: generic/730: exclude btrfs for now Qu Wenruo
2025-06-04  8:25 ` Christoph Hellwig
2025-06-04  9:17   ` Qu Wenruo
2025-06-04 13:24     ` Christoph Hellwig
2025-06-06 10:55       ` Qu Wenruo
2025-06-05 13:55 ` Zorro Lang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.