From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konstantin Ananyev Subject: [PATCH 3/3] examples/ipsec-secgw: fix typo in test script Date: Wed, 27 Mar 2019 09:33:29 +0000 Message-ID: <20190327093329.12521-4-konstantin.ananyev@intel.com> References: <20190327093329.12521-1-konstantin.ananyev@intel.com> Cc: akhil.goyal@nxp.com, Konstantin Ananyev To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 0092B532C for ; Wed, 27 Mar 2019 10:33:37 +0100 (CET) In-Reply-To: <20190327093329.12521-1-konstantin.ananyev@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fix typo in run_test.sh Fixes: 929784452094 ("examples/ipsec-secgw: add scripts for functional test") Signed-off-by: Konstantin Ananyev --- examples/ipsec-secgw/test/run_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ipsec-secgw/test/run_test.sh b/examples/ipsec-secgw/test/run_test.sh index d8c4b6625..3a1a7d4b4 100644 --- a/examples/ipsec-secgw/test/run_test.sh +++ b/examples/ipsec-secgw/test/run_test.sh @@ -66,7 +66,7 @@ while [[ ${st} -eq 0 ]]; do fi done -if [[ ${run4} -eq 0 && {run6} -eq 0 ]]; then +if [[ ${run4} -eq 0 && ${run6} -eq 0 ]]; then exit 127 fi -- 2.17.1