From 14a7fdfab18fd3b0c2c37b93714570aee4a11c4b Mon Sep 17 00:00:00 2001 From: Eryu Guan Date: Mon, 5 Sep 2016 13:24:24 +0800 Subject: [PATCH] xfs/279: filter scsi debug device correctly This test assumes scsi debug device is "/dev/sd." when doing the filter, but that isn't always true, I've seen failure like -mkfs with opts: DEVICE +mkfs with opts: DEVICEl So use $SCSI_DEBUG_DEV to match the correct scsi debug device name. Reviewed-by: Dave Chinner Signed-off-by: Eryu Guan --- tests/xfs/279 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xfs/279 b/tests/xfs/279 index cde7d21e..9dee4cfb 100755 --- a/tests/xfs/279 +++ b/tests/xfs/279 @@ -61,7 +61,7 @@ _wipe_device() _check_mkfs() { echo "===================" - echo "mkfs with opts: $@" | sed -e "s,/dev/sd.,DEVICE," + echo "mkfs with opts: $@" | sed -e "s,$SCSI_DEBUG_DEV,DEVICE," $MKFS_XFS_PROG $@ 2>/dev/null > $tmp.mkfs.full if [ $? -ne 0 ]; then echo "Failed." -- 2.39.5