From patchwork Thu Apr 20 00:00:05 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Github ODP bot X-Patchwork-Id: 97696 Delivered-To: patch@linaro.org Received: by 10.140.109.52 with SMTP id k49csp552708qgf; Wed, 19 Apr 2017 17:00:21 -0700 (PDT) X-Received: by 10.55.71.23 with SMTP id u23mr4819578qka.134.1492646421301; Wed, 19 Apr 2017 17:00:21 -0700 (PDT) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id j6si4076826qtd.115.2017.04.19.17.00.20; Wed, 19 Apr 2017 17:00:21 -0700 (PDT) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=yandex.ru Received: by lists.linaro.org (Postfix, from userid 109) id B368460A07; Thu, 20 Apr 2017 00:00:20 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id 9B02B60993; Thu, 20 Apr 2017 00:00:18 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 90B6E609A2; Thu, 20 Apr 2017 00:00:17 +0000 (UTC) Received: from forward8j.cmail.yandex.net (forward8j.cmail.yandex.net [5.255.227.109]) by lists.linaro.org (Postfix) with ESMTPS id 6B2C560982 for ; Thu, 20 Apr 2017 00:00:15 +0000 (UTC) Received: from smtp3j.mail.yandex.net (smtp3j.mail.yandex.net [IPv6:2a02:6b8:0:801:1::12]) by forward8j.cmail.yandex.net (Yandex) with ESMTP id C17A222637 for ; Thu, 20 Apr 2017 03:00:13 +0300 (MSK) Received: from smtp3j.mail.yandex.net (localhost.localdomain [127.0.0.1]) by smtp3j.mail.yandex.net (Yandex) with ESMTP id 8A0E76240E1B for ; Thu, 20 Apr 2017 03:00:12 +0300 (MSK) Received: by smtp3j.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id lvBqYvm712-0CK8INoA; Thu, 20 Apr 2017 03:00:12 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client certificate not present) X-Yandex-Suid-Status: 1 0 From: Github ODP bot To: lng-odp@lists.linaro.org Date: Thu, 20 Apr 2017 03:00:05 +0300 Message-Id: <1492646405-32739-1-git-send-email-odpbot@yandex.ru> X-Mailer: git-send-email 1.9.1 Github-pr-num: 15 Subject: [lng-odp] [PATCH] test: tm: use script instead of binary when calling traffic manager test X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" From: Dmitry Eremin-Solenikov Since 51e3b8776b78180741fa57a621f9d13b9ae8bbfb tm test received wrapper script checking if it is run under Travis CI. However linux-generic testsuite was not updated to call script instead of binary, resulting in test failures. Signed-off-by: Dmitry Eremin-Solenikov --- /** Email created from pull request 15 (lumag:fix-tmgr) ** https://github.com/Linaro/odp/pull/15 ** Patch: https://github.com/Linaro/odp/pull/15.patch ** Base sha: 5622f689653013b317842386a1aed81dd81fe749 ** Merge commit sha: d52fad48d4e87f9a79fadb0d6dc217f5bed9b187 **/ test/linux-generic/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Bill Fischofer diff --git a/test/linux-generic/Makefile.am b/test/linux-generic/Makefile.am index 0522550..38516a4 100644 --- a/test/linux-generic/Makefile.am +++ b/test/linux-generic/Makefile.am @@ -30,7 +30,7 @@ TESTS = validation/api/pktio/pktio_run.sh \ $(ALL_API_VALIDATION_DIR)/thread/thread_main$(EXEEXT) \ $(ALL_API_VALIDATION_DIR)/time/time_main$(EXEEXT) \ $(ALL_API_VALIDATION_DIR)/timer/timer_main$(EXEEXT) \ - $(ALL_API_VALIDATION_DIR)/traffic_mngr/traffic_mngr_main$(EXEEXT) \ + $(ALL_API_VALIDATION_DIR)/traffic_mngr/traffic_mngr.sh \ $(ALL_API_VALIDATION_DIR)/shmem/shmem_main$(EXEEXT) \ $(ALL_API_VALIDATION_DIR)/system/system_main$(EXEEXT) \ ring/ring_main$(EXEEXT)