From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yong Liu Subject: [PATCH] app test: fix eal --no-huge option should work with -m option Date: Wed, 29 Jul 2015 12:38:12 +0800 Message-ID: <1438144692-10114-1-git-send-email-yong.liu@intel.com> To: dev@dpdk.org Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 7C9CEC4E2 for ; Wed, 29 Jul 2015 06:38:20 +0200 (CEST) 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" From: Marvin Liu '--no-huge' option now can workable with -m option. Unit test for eal flag should change pass criterion. Signed-off-by: Marvin Liu diff --git a/app/test/test_eal_flags.c b/app/test/test_eal_flags.c index 0352f87..e6f7035 100644 --- a/app/test/test_eal_flags.c +++ b/app/test/test_eal_flags.c @@ -748,8 +748,8 @@ test_no_hpet_flag(void) } /* - * Test that the app runs with --no-huge and doesn't run when either - * -m or --socket-mem are specified with --no-huge. + * Test that the app runs with --no-huge and doesn't run when --socket-mem are + * specified with --no-huge. */ static int test_no_huge_flag(void) @@ -778,8 +778,8 @@ test_no_huge_flag(void) printf("Error - process did not run ok with --no-huge flag\n"); return -1; } - if (launch_proc(argv2) == 0) { - printf("Error - process run ok with --no-huge and -m flags\n"); + if (launch_proc(argv2) != 0) { + printf("Error - process did not run ok with --no-huge and -m flags\n"); return -1; } #ifdef RTE_EXEC_ENV_BSDAPP -- 1.9.3