From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] scripts: add help for build testing Date: Sun, 13 Dec 2015 03:03:46 +0100 Message-ID: <1449972226-30790-1-git-send-email-thomas.monjalon@6wind.com> References: <4975020.B35JWah5pV@xps13> Cc: dev@dpdk.org To: keith.wiles@intel.com Return-path: Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id 0AC4A8E81 for ; Sun, 13 Dec 2015 03:05:08 +0100 (CET) Received: by mail-wm0-f47.google.com with SMTP id n186so76780611wmn.1 for ; Sat, 12 Dec 2015 18:05:08 -0800 (PST) In-Reply-To: <4975020.B35JWah5pV@xps13> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Thomas Monjalon --- scripts/test-build.sh | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/scripts/test-build.sh b/scripts/test-build.sh index 6e67c8f..a9075af 100755 --- a/scripts/test-build.sh +++ b/scripts/test-build.sh @@ -40,7 +40,25 @@ . scripts/load-devel-config.sh print_usage () { - echo "usage: $(basename $0) [-jX] [-s] [config1 [config2] ...]]" + echo "usage: $(basename $0) [-h] [-jX] [-s] [config1 [config2] ...]]" +} + +print_help () { + echo 'Test building several targets with different options' + echo + print_usage + cat <<- END_OF_HELP + + options: + -h this help + -jX use X parallel jobs in "make" + -s short test with only first config without examples/doc + + config: + default config name + config switches delimited with "+" sign + example: x86_64-native-linuxapp-gcc+next+shared+combined + external dependencies defined with DPDK_DEP_* variables + END_OF_HELP } J=$DPDK_MAKE_JOBS @@ -49,7 +67,7 @@ while getopts hj:s ARG ; do case $ARG in j ) J=$OPTARG ;; s ) short=true ;; - h ) print_usage ; exit 0 ;; + h ) print_help ; exit 0 ;; ? ) print_usage ; exit 1 ;; esac done -- 2.5.2