Move recent versions of ln (i.e. debian unstable) have
a different error output. update the filter to handle this.
Signed-off-by: Dave Chinner <dgc@xxxxxxx>
---
xfstests/103 | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: xfs-cmds/xfstests/103
===================================================================
--- xfs-cmds.orig/xfstests/103 2006-11-14 19:57:41.000000000 +1100
+++ xfs-cmds/xfstests/103 2008-03-19 10:02:14.393358705 +1100
@@ -47,7 +47,8 @@ _filter_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"
+ 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 "s,: Operation not permitted, to \`SCRATCH_MNT/nosymlink/source\':
Operation not permitted,g"
}
_filter_noymlinks_flag()
|