Displaying 1 result from an estimated 1 matches for "_filter_btrfs_device_stats".
2013 Aug 16
2
[PATCH] xfstests: update filters and output of btrfs/006
...m_show()
 	# the uniq collapses all device lines into 1
 	_filter_uuid $UUID | _filter_scratch | _filter_scratch_pool | \
 	_filter_size | _filter_btrfs_version | _filter_devid | \
+	_filter_spaces | \
 	sed -e "s/\(Total devices\) $NUMDEVS/\1 $NUM_SUBST/g" | \
 	uniq
 }
@@ -51,7 +52,7 @@ _filter_btrfs_device_stats()
 		UNIQ_OPT=""
 	fi
 
-	_filter_scratch | _filter_scratch_pool | \
+	_filter_scratch | _filter_scratch_pool | _filter_spaces | \
 	sed -e "s/[0-9]\+$/<NUM>/g" | sort | uniq $UNIQ_OPT | \
 	sed -e "s/$NUMDEVS /<NUMDEVS> /g"
 }
diff --git a/tests/btrfs/006...