mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfs: fix $XFS_DB_PROG usage
xfs_db requires us to pass in the log device, if any; this can be accomplished via _scratch_xfs_db_options (if we're operating on the scratch device, anyway). However, many of the tests/xfs/ scripts pass only $SCRATCH_DEV directly, so they'll fail if we test with an external log. Fix that by adding a new _scratch_xfs_db helper. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
committed by
Eryu Guan
parent
fff869cb9c
commit
c08ebd092d
+2
-3
@@ -46,10 +46,9 @@ _cleanup()
|
||||
|
||||
_print_projid()
|
||||
{
|
||||
$XFS_DB_PROG -r -c "inode $1" \
|
||||
_scratch_xfs_db -r -c "inode $1" \
|
||||
-c "print core.projid_lo" \
|
||||
-c "print core.projid_hi" \
|
||||
$SCRATCH_DEV
|
||||
-c "print core.projid_hi"
|
||||
}
|
||||
|
||||
# real QA test starts here
|
||||
|
||||
Reference in New Issue
Block a user