From: Omar Sandoval <osandov@xxxxxx> Coreutils 8.4 uses a back tick instead of a single quote when quoting a file name. That means that _filter_mknod doesn't properly filter the error message from mknod. Signed-off-by: Omar Sandoval <osandov@xxxxxx> --- common/filter | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/filter b/common/filter index 8d9f489bea1c..886ab6deae55 100644 --- a/common/filter +++ b/common/filter @@ -389,7 +389,7 @@ _filter_od() # mknod errors print unquoted filenames _filter_mknod() { - sed -e "s/mknod: '\(.*\)': File exists/mknod: \1: File exists/" + sed -e "s/mknod: ['\`]\(.*\)': File exists/mknod: \1: File exists/" } # make sure this script returns success -- 2.9.0 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html