From 9ed4967478192343752ece33158006345277b5d9 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Thu, 25 Nov 2021 01:04:37 +0000 Subject: [PATCH] scripts/run-regression-tests: Exclude LIO from the build Additionally, use make -j to speed up compilation. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@9607 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index f3a89cdbe..d5f65d84f 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -303,6 +303,7 @@ CONFIG_SCHED_TRACER \ CONFIG_SECURITY_SELINUX \ CONFIG_STACK_TRACER \ CONFIG_STACK_VALIDATION \ +CONFIG_TARGET_CORE \ CONFIG_TRACEPOINTS \ CONFIG_TRACER_MAX_TRACE \ CONFIG_TRACE_BRANCH_PROFILING \ @@ -386,7 +387,7 @@ function compile_kernel { if (cd "${outputdir}/linux-$k" \ && make -s modules_prepare \ && make -s scripts \ - && for subdir; do LC_ALL=C make -k M="${subdir}"; done + && for subdir; do LC_ALL=C make -j$(nproc) -k M="${subdir}"; done ) &> "${outputfile}" then local errors warnings