From f47278cb82f983de9b7f79aa8dbd86b84cf77cf0 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 23 Jan 2014 11:22:17 +0100 Subject: [PATCH] ignored steps (-i) can be passed to run_log just like excluded ones (-1) already were --- lbuild-nightly.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lbuild-nightly.sh b/lbuild-nightly.sh index 4fa83732..6bb142c5 100755 --- a/lbuild-nightly.sh +++ b/lbuild-nightly.sh @@ -442,6 +442,7 @@ function usage () { echo " -c testconfig - defaults to $DEFAULT_TESTCONFIG" echo " -y {pl,pg} - passed to run_log" echo " -e step - passed to run_log" + echo " -i step - passed to run_log" echo " -X : passes --lxc to run_log" echo " -S : passes --vs to run_log" echo " -x - a hook to pass other arguments to run_log" @@ -478,7 +479,7 @@ function main () { SIGNYUMREPO="" OPTS_ORIG=$@ - OPTS=$(getopt -o "f:d:p:m:s:t:b:o:c:y:e:XSx:w:W:r:M:Yg:u:K:SBTnv7i:P:h" -l "build-branch:" -- $@) + OPTS=$(getopt -o "f:d:p:m:s:t:b:o:c:y:e:i:XSx:w:W:r:M:Yg:u:K:SBTnv7i:P:h" -l "build-branch:" -- $@) if [ $? != 0 ] then usage @@ -500,6 +501,7 @@ function main () { -y) RUN_LOG_EXTRAS="$RUN_LOG_EXTRAS --rspec-style $2"; shift 2 ;; # -e foo -> run_log -e foo -e) RUN_LOG_EXTRAS="$RUN_LOG_EXTRAS --exclude $2"; shift 2 ;; + -i) RUN_LOG_EXTRAS="$RUN_LOG_EXTRAS --ignore $2"; shift 2 ;; # -X -> run_log --lxc -X) RUN_LOG_EXTRAS="$RUN_LOG_EXTRAS --lxc"; shift;; # -S -> run_log --vs -- 2.43.0