From d2d5c14fd90392b7c25c2aa37ccc1414d8cf4055 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Fri, 30 Dec 2022 14:19:39 -0800 Subject: [PATCH] fuzzy: disable per-field random fuzzing by default Don't run the random fuzzer by default so that we can try to stabilize the output somewhat. Signed-off-by: Darrick J. Wong Reviewed-by: Zorro Lang Signed-off-by: Zorro Lang --- common/fuzzy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/fuzzy b/common/fuzzy index 7d244cc1..8ff402da 100644 --- a/common/fuzzy +++ b/common/fuzzy @@ -284,7 +284,8 @@ _scratch_xfs_list_fuzz_verbs() { return; fi _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' + sed -e 's/[,.]//g' -e 's/Fuzz commands: //g' -e 's/ /\n/g' | \ + grep -v '^random$' } # Fuzz some of the fields of some piece of metadata -- 2.39.5