From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> Correct the logic in this test that detects failed scsi_debug initializations. Downgrade the reaction to _notrun since the filesystem under test did not fail, just our mockup disk. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- tests/generic/108 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/generic/108 b/tests/generic/108 index 9b4fe60f..ab6101f2 100755 --- a/tests/generic/108 +++ b/tests/generic/108 @@ -49,9 +49,7 @@ rm -f $seqres.full # _get_scsi_debug_dev returns a scsi debug device with 128M in size by default SCSI_DEBUG_DEV=`_get_scsi_debug_dev 512 512 0 300` -if [ "$SCSI_DEBUG_DEV" == "/dev/" ]; then - _fail "Failed to initialize scsi debug device" -fi +test -b "$SCSI_DEBUG_DEV" || _notrun "Failed to initialize scsi debug device" echo "SCSI debug device $SCSI_DEBUG_DEV" >>$seqres.full # create striped volume with 4MB stripe size