From: Dave Chinner Date: Tue, 6 Dec 2011 11:16:59 +0000 (+1100) Subject: xfstests: ln failure output has changed again X-Git-Tag: v2022.05.01~3631 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a42043480f526f58a71e59f16d769c819d2dbb20;p=xfstests-dev.git xfstests: ln failure output has changed again Recent coreutils packages have changed the failure output of ln(1) (again!) to be more verbose, breaking the filter in test 103: -ln: creating symbolic link `SCRATCH_MNT/nosymlink/target' to `SCRATCH_MNT/nosymlink/source': Operation not permitted +ln: failed to create symbolic link `SCRATCH_MNT/nosymlink/target' to `SCRATCH_MNT/nosymlink/source': Operation not permitted Fix it. Signed-off-by: Dave Chinner Signed-off-by: Christoph Hellwig --- diff --git a/103 b/103 index 1c9994e0..e383991b 100755 --- a/103 +++ b/103 @@ -57,7 +57,8 @@ _create_scratch() _filter_ln() { sed -e "s,SCRATCH_MNT/nosymlink/target - Operation not permitted,ln: creating symbolic link \`SCRATCH_MNT/nosymlink/target\' to \`SCRATCH_MNT/nosymlink/source\': Operation not permitted,g" \ - -e "/SCRATCH_MNT.*to.*SCRATCH_MNT/! s,: Operation not permitted, to \`SCRATCH_MNT/nosymlink/source\': Operation not permitted,g" + -e "/SCRATCH_MNT.*to.*SCRATCH_MNT/! s,: Operation not permitted, to \`SCRATCH_MNT/nosymlink/source\': Operation not permitted,g" \ + -e "s,failed to create,creating," } _filter_noymlinks_flag()