From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 99AC937AC for ; Tue, 24 May 2016 17:15:37 +0200 (CEST) Received: by mail-wm0-f41.google.com with SMTP id z87so28305181wmh.0 for ; Tue, 24 May 2016 08:15:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:user-agent:in-reply-to:references :mime-version:content-transfer-encoding; bh=gnYeMWxW2ejAma2PslZrDMxsTxtokY2yrC8lQz6sjgA=; b=elrxgJoLV8vrJUGYjjAKCZ4sMbmrd32Vafm0CsuSFJAzKxAZbOYgBIIHLPLxVk15Li jmK3ZcoU0fSu4eGchvcAJMkRZKthulYZXsx951YkdmpL00DEzTJ6Epib6AWEiWtLr8Sm jLsj8DpcLeT23aXYXMzwB3FvWRfsbb/iefoRZrqDmoLCM6vFNBDqDRRn+pkr+FByuoLE 5TT+mtzljN+nNQgzpQXhYmZOI1Fa0UaHwbiyHfsZ8fafipP13wAFfodBKQ28LI3s1e6P m6e1j645ziOXOfOcG/hGasLwLQq8BhdS3afsm1IvqBsFJ+kGDDXmCxav5h6osJwFaRFq 1bkQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=gnYeMWxW2ejAma2PslZrDMxsTxtokY2yrC8lQz6sjgA=; b=gJhn7zIhboLjHhlkqGK2Vi/A3FjdTMUBa5xJvyI31Tq3+V+qAVpb20+6Nj9ohM2cKs yAu1KsGKcU1ERIO8IojM6L+560Y/2CLYRJyFD7dnd9oVOhR6lIR6cLbzy2ZayTiv3cMh 72Z05utaHxVENKL23w6MeI+SayXyyivPzPebMNZ6VOb2BsHK+q8kNUj0EJuiYvzRcbGP lbfjuQA6hA+3uTcZKBxaXtKIpX1Y3w+Y1d7nHbGdTc8k+rQOcJdgWIZ2y8Gxv/gIUhDH kdB96vzsuIgXr/raeweTLC2nficyhF1zIttlqQPp/LgQ1TP+RgV0REMionnf1xcKvt6c SdcA== X-Gm-Message-State: AOPr4FV77QiHTKYXCElZt5Yal53A/7wkLmFyynqTKmnI0GSv2EA2c+2ueLuAC7jSK8LlugYo X-Received: by 10.28.153.80 with SMTP id b77mr23670093wme.71.1464102937361; Tue, 24 May 2016 08:15:37 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id i3sm3726072wjx.30.2016.05.24.08.15.36 for (version=TLSv1/SSLv3 cipher=OTHER); Tue, 24 May 2016 08:15:36 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Tue, 24 May 2016 17:15:35 +0200 Message-ID: <2008326.zZEttTykVO@xps13> User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1463468749-22097-1-git-send-email-thomas.monjalon@6wind.com> References: <1463468749-22097-1-git-send-email-thomas.monjalon@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] app/test: fix log check when default level is high X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2016 15:15:37 -0000 2016-05-17 09:05, Thomas Monjalon: > The log unit test was checking display of low priority messages. > It was not working if RTE_LOG_LEVEL is not RTE_LOG_DEBUG. > It is even easier to see since the default level is INFO (9b9d7ca). > > Now the test use ERR and CRIT levels which should be always enabled > while not trigerring syslog output on the console. > > Signed-off-by: Thomas Monjalon > --- > v2: > - fix comments for the log levels > - add comments to explain the test Applied