From 9118d7c71fe7a4c94955b73a2fbe9bd82aa6c982 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 28 Sep 2011 17:42:50 +0000 Subject: [PATCH] Nightly build: include the latency measuring code git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@3885 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index 595f652e0..dc08730b6 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -210,7 +210,8 @@ function compile_scst_unpatched { if mkdir -p "${workingdirectory}" \ && cd "${workingdirectory}" \ && duplicate_scst_source_tree "${scst}" \ - && (make -s clean \ + && (export KCFLAGS=-DCONFIG_SCST_MEASURE_LATENCY; \ + make -s clean \ && make -s scst iscsi-scst \ && if "${scst_local}" = "true" ; then make -C scst_local clean; fi \ && if "${scst_local}" = "true" ; then make -C scst_local -s ; fi \ @@ -240,7 +241,8 @@ function compile_scst_patched { && cd "${workingdirectory}" \ && duplicate_scst_source_tree "${scst}" \ && make -s "$1" \ - && (make -s clean \ + && (export KCFLAGS=-DCONFIG_SCST_MEASURE_LATENCY; \ + make -s clean \ && make -s scst iscsi-scst \ && if "${scst_local}" = "true" ; then make -C scst_local clean; fi \ && if "${scst_local}" = "true" ; then make -C scst_local -s ; fi \