From: Eryu Guan Date: Wed, 29 May 2013 19:42:09 +0000 (-0500) Subject: xfstests: add missing colon in _filter_ln X-Git-Tag: v2022.05.01~3419 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3f09dca681eb0cdd850abbcdb4d6997a0890b09a;p=xfstests-dev.git xfstests: add missing colon in _filter_ln On distros with older coreutils(eg. RHEL5) generic/294 fails like -ln: creating symbolic link `SCRATCH_MNT/294.test/testlink': File exists +ln: creating symbolic link `SCRATCH_MNT/294.test/testlink'File exists _filter_ln ate the ": ". xfs/103 has similar issue. Add ": " back. Signed-off-by: Eryu Guan Reviewed-by: Eric Sandeen Signed-off-by: Rich Johnston --- diff --git a/common/filter b/common/filter index bdd64270..dbb16742 100644 --- a/common/filter +++ b/common/filter @@ -243,7 +243,7 @@ _filter_spaces() # Account for different "ln" failure messages _filter_ln() { - sed -e "s,\(creating symbolic link .*\) to .*: ,\1," \ + sed -e "s,\(creating symbolic link .*\) to .*: ,\1: ," \ -e "s,failed to create,creating," }