[PATCH] bootconfig: Fix testcase to increase max node
Steven Rostedt
rostedt at goodmis.org
Tue Mar 14 08:12:13 PDT 2023
On Mon, 13 Mar 2023 22:56:09 +0900
"Masami Hiramatsu (Google)" <mhiramat at kernel.org> wrote:
> @@ -87,10 +88,16 @@ xfail grep -i "error" $OUTFILE
>
> echo "Max node number check"
>
> -echo -n > $TEMPCONF
> -for i in `seq 1 1024` ; do
> - echo "node$i" >> $TEMPCONF
Do you need this extra file?
> -done
> +cat > $AWKFILE << EOF
> +BEGIN {
> + for (i = 0; i < 26; i += 1)
> + printf("%c\n", 65 + i % 26)
> + for (i = 26; i < 8192; i += 1)
> + printf("%c%c%c\n", 65 + i % 26, 65 + (i / 26) % 26, 65 + (i / 26 / 26))
> +}
> +EOF
> +awk -f "$AWKFILE" > $TEMPCONF
Couldn't the above just be:
awk '
BEGIN {
for (i = 0; i < 26; i += 1)
printf("%c\n", 65 + i % 26)
for (i = 26; i < 8192; i += 1)
printf("%c%c%c\n", 65 + i % 26, 65 + (i / 26) % 26, 65 + (i / 26 / 26))
}
' > $TEMPCONF
and not need the extra file?
-- Steve
> xpass $BOOTCONF -a $TEMPCONF $INITRD
>
> echo "badnode" >> $TEMPCONF
More information about the linux-arm-kernel
mailing list