From 48613832ad11ce22eaf74a39509cc350cf59c241 Mon Sep 17 00:00:00 2001 From: Zhao Lei Date: Mon, 21 Sep 2015 13:06:17 +1000 Subject: [PATCH] _filter_uuid: Fix output regression for btrfs/006 _filter_uuid() get updated and changed output from: uuid: -> uuid: It is a typo introduced by xfs/077, this patch fixed this. Signed-off-by: Zhao Lei Reviewed-by: Omar Sandoval Signed-off-by: Dave Chinner --- common/filter | 2 +- tests/xfs/077.out | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/filter b/common/filter index 8db1b3e4..af456c93 100644 --- a/common/filter +++ b/common/filter @@ -277,7 +277,7 @@ _filter_uuid() UUID=$1 sed -e "s/\(uuid[ :=]\+\) $UUID/\1 /i" else - sed -e "s/\(uuid[ :=]\+\) *[0-9a-f-][0-9a-f-]*/\1 /ig" + sed -e "s/\(uuid[ :=]\+\) [0-9a-f-][0-9a-f-]*/\1 /ig" fi } diff --git a/tests/xfs/077.out b/tests/xfs/077.out index fdc7d72f..4e18087d 100644 --- a/tests/xfs/077.out +++ b/tests/xfs/077.out @@ -2,7 +2,7 @@ QA output created by 077 == Generate new UUID Clearing log and setting UUID writing all SBs -new UUID = +new UUID = == Rewrite UUID old UUID = Clearing log and setting UUID -- 2.39.5