From a0f39ca7ae7e3c153b25b27f85e0c42b452c63a1 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 16 Oct 2016 17:51:47 -0700 Subject: [PATCH] scripts/run-regression-tests: Avoid that "make oldconfig" hangs --- scripts/run-regression-tests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index 031e73117..15959f6c3 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -300,7 +300,7 @@ CONFIG_TRACING CONFIG_X86_32 \ fi && make -s allmodconfig &>"${outputdir}/make-config-output.txt" && for c in $disable; do sed -i.tmp "s/^$c=[ym]\$/$c=n/" .config; done && - make -s oldconfig &>/dev/null + make -s oldconfig /dev/null ) } @@ -399,7 +399,7 @@ function run_smatch { echo "Running smatch on the patched kernel in ${subdir} $@ ..." if (cd "${outputdir}/linux-$k" && for c in $disable; do sed -i.tmp "s/^$c=y\$/$c=n/" .config; done && - make -s oldconfig && + make -s oldconfig