As part of upstreaming, the xfs_db fuzz command change the help output which breaks the fuzzers' ability to detect fuzz verbs. Fix that. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- common/fuzzy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/fuzzy b/common/fuzzy index c9f7e90..7a4b03a 100644 --- a/common/fuzzy +++ b/common/fuzzy @@ -313,8 +313,8 @@ _scratch_xfs_list_fuzz_verbs() { echo "${SCRATCH_XFS_LIST_FUZZ_VERBS}" | tr '[ ,]' '[\n\n]' return; fi - _scratch_xfs_db -x -c 'sb 0' -c 'fuzz' | grep '^Verbs:' | \ - sed -e 's/[,.]//g' -e 's/Verbs: //g' -e 's/ /\n/g' + _scratch_xfs_db -x -c 'sb 0' -c 'fuzz' | grep '^Fuzz commands:' | \ + sed -e 's/[,.]//g' -e 's/Fuzz commands: //g' -e 's/ /\n/g' } # Fuzz some of the fields of some piece of metadata -- 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