From a57817f4dc7a6eb9cca21b4197a0df332c7d78a0 Mon Sep 17 00:00:00 2001 From: Jacob Keller Date: Mon, 8 Sep 2014 16:53:06 -0700 Subject: [PATCH] aiaiai: cleanup display of randconfig builds This patch removes some code attempting to show the random configuration generated for the build. It does not correctly show up in the email, so I need to spend some time figuring out where to display the configuration file. Additionally, clean up some display about generating the random config so that we don't see the errors. Also we do a make mrproper to cleanup any generated files so that builds will be clean when we start. Signed-off-by: Jacob Keller --- aiaiai-test-patchset | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/aiaiai-test-patchset b/aiaiai-test-patchset index 9e1c7d2..6642061 100755 --- a/aiaiai-test-patchset +++ b/aiaiai-test-patchset @@ -187,11 +187,14 @@ test_configuration() if [ "$defconfig" = "randconfig" ]; then # Generate a random configuration make -C "$cloned_kernel1" ${arch:+ARCH="$arch"} \ - ${cross:+CROSS_COMPILE="$cross"} -- "$defconfig" + ${cross:+CROSS_COMPILE="$cross"} -- "$defconfig" >&2 # Store this configuration in our temporary work dir defconfig="$tmpdir/$config.random" - cp .config "$defconfig" + verbose "Copying random configuration to $defconfig" + cp .config "$defconfig" >&2 + + make -C "$cloned_kernel1" mrproper >&2 elif [ -n "$confdir" ]; then defconfig="$confdir/$defconfig" [ -f "$defconfig" ] || die "$defconfig is not available" @@ -543,10 +546,6 @@ for defconfig in $defconfigs; do cat "$tmpdir/$defconfig.stderr.diff" - if [ -f "$tmpdir/$defconfig.config" ]; then - printf "\n%s\n" "For reference, the random configuration used was:" - cat "$tmpdir/$defconfig.config" - fi else printf "\n%s\n" "Successfully built configuration \"$defconfig\", no issues." fi -- 2.49.0