From a42043480f526f58a71e59f16d769c819d2dbb20 Mon Sep 17 00:00:00 2001 From: Dave Chinner Date: Tue, 6 Dec 2011 22:16:59 +1100 Subject: [PATCH] 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 --- 103 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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() -- 2.39.5