From 07e91f348ea8327a87a4dd8f815e250aa48d9a31 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Thu, 1 Dec 2016 05:08:58 +0000 Subject: [PATCH] scripts/run-regression-tests: Avoid that "make oldconfig" hangs git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7042 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- 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 b61ea45f1..79648564b 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -303,7 +303,7 @@ CONFIG_X86_X32 \ 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 ) } @@ -402,7 +402,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