diff mbox series

common/reflink: fix error messages in _require_scratch_dedupe()

Message ID 20181010235550.18742-1-ailiopoulos@suse.com (mailing list archive)
State New, archived
Headers show
Series common/reflink: fix error messages in _require_scratch_dedupe() | expand

Commit Message

Anthony Iliopoulos Oct. 10, 2018, 11:55 p.m. UTC
In case dedupe returns an error in _require_scratch_dedupe(),
report the error for the scratch rather than for the test
filesystem.

Signed-off-by: Anthony Iliopoulos <ailiopoulos@suse.com>
---
 common/reflink | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/common/reflink b/common/reflink
index e2663277..11561a76 100644
--- a/common/reflink
+++ b/common/reflink
@@ -145,11 +145,11 @@  _require_scratch_dedupe()
 	$XFS_IO_PROG -f -c "pwrite -S 0x61 0 65536" "$SCRATCH_MNT/file2" > /dev/null
 	testio="$($XFS_IO_PROG -f -c "dedupe $SCRATCH_MNT/file1 0 0 65536" "$SCRATCH_MNT/file2" 2>&1)"
 	echo $testio | grep -q "Operation not supported" && \
-		_notrun "Dedupe not supported by test filesystem type: $FSTYP"
+		_notrun "Dedupe not supported by scratch filesystem type: $FSTYP"
 	echo $testio | grep -q "Inappropriate ioctl for device" && \
-		_notrun "Dedupe not supported by test filesystem type: $FSTYP"
+		_notrun "Dedupe not supported by scratch filesystem type: $FSTYP"
 	echo $testio | grep -q "Invalid argument" && \
-		_notrun "Dedupe not supported by test filesystem type: $FSTYP"
+		_notrun "Dedupe not supported by scratch filesystem type: $FSTYP"
 	_scratch_unmount
 }