From: Eric Sandeen Date: Mon, 20 Jun 2022 21:43:31 +0000 (-0500) Subject: xfs/122: escape %zu in printf with %% not \\% X-Git-Tag: v2022.06.26~4 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=09f420da65a6a642657e98816b276cc35c6bc40c;p=xfstests-dev.git xfs/122: escape %zu in printf with %% not \\% The standard way to escape % in a printf is with %%; although \\%zu seems to have worked in awk until recently, an upgrade on Fedora 36 has started failing: awk: cmd. line:1: (FILENAME=- FNR=1) fatal: not enough arguments to satisfy format string 'printf("sizeof(%s) = \%zu\n", sizeof(%s)); ' ^ ran out for this one Switching the escape to "%%" fixes this for me, and also works on my very old RHEL7 mcahine. Signed-off-by: Eric Sandeen Reviewed-by: Zorro Lang Signed-off-by: Zorro Lang --- diff --git a/tests/xfs/122 b/tests/xfs/122 index 52006150..18748e67 100755 --- a/tests/xfs/122 +++ b/tests/xfs/122 @@ -186,7 +186,7 @@ egrep '(} *xfs_.*_t|^struct xfs_[a-z0-9_]*$)' |\ egrep -v -f $tmp.ignore |\ sed -e 's/^.*}[[:space:]]*//g' -e 's/;.*$//g' -e 's/_t, /_t\n/g' |\ sort | uniq |\ -awk '{printf("printf(\"sizeof(%s) = \\%zu\\n\", sizeof(%s));\n", $0, $0);}' |\ +awk '{printf("printf(\"sizeof(%s) = %%zu\\n\", sizeof(%s));\n", $0, $0);}' |\ cat >> $cprog # @@ -199,7 +199,7 @@ awk ' /typedef struct xfs_sb/ { structon = 1; next } structon && $2 ~ /^sb_/ { sub(/[;,]/,"",$2) sub(/XFSLABEL_MAX/,"12",$2) - printf("printf(\"offsetof(xfs_sb_t, %s) = \\%zu\\n\", offsetof(xfs_sb_t, %s));", $2, $2); next} + printf("printf(\"offsetof(xfs_sb_t, %s) = %%zu\\n\", offsetof(xfs_sb_t, %s));", $2, $2); next} structon && /}/ { structon = 0; next} '>>$cprog