From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from fllnx209.ext.ti.com (fllnx209.ext.ti.com [198.47.19.16]) by arago-project.org (Postfix) with ESMTPS id D2AC752AEE for ; Fri, 3 Mar 2017 21:00:57 +0000 (UTC) Received: from dflxv15.itg.ti.com ([128.247.5.124]) by fllnx209.ext.ti.com (8.15.1/8.15.1) with ESMTP id v23L0laB001517 for ; Fri, 3 Mar 2017 15:00:47 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1488574847; bh=09rjYAeqj5DbWn6pG3vMuRtp9yvXm5sLsGPritGs2ps=; h=Date:From:To:CC:Subject:References:In-Reply-To; b=INqwJ2QraUvGaUmJHc0X4TL23TOmPAOmimugY4Qj8CoMsehEnT4kiKRKEXkBbkI/f 3lq65zw6A4Z6Ory9ENCuef6whc74sSvpi0UHVSo/WWTGiyGSV5xiRzfXI3aS63MA/Z potPgdpCNPOrPfGhlT+/yQQ/Y5Mb1CrG4xWuYvmg= Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id v23L0gnR015097 for ; Fri, 3 Mar 2017 15:00:42 -0600 Received: from dlep32.itg.ti.com (157.170.170.100) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.294.0; Fri, 3 Mar 2017 15:00:42 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep32.itg.ti.com (8.14.3/8.13.8) with ESMTP id v23L0g6s019726; Fri, 3 Mar 2017 15:00:42 -0600 Date: Fri, 3 Mar 2017 16:00:41 -0500 From: Denys Dmytriyenko To: Carlos Hernandez Message-ID: <20170303210041.GM12614@edge> References: <1488551149-39460-2-git-send-email-ceh@ti.com> <1488569619-43487-1-git-send-email-ceh@ti.com> MIME-Version: 1.0 In-Reply-To: <1488569619-43487-1-git-send-email-ceh@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: meta-arago@arago-project.org, yan-liu@ti.com Subject: Re: [PATCH v3] ltp-ddt: update to latest ltp release 20170116 X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Mar 2017 21:00:58 -0000 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Ack, thanks. On Fri, Mar 03, 2017 at 02:33:39PM -0500, Carlos Hernandez wrote: > remove scheduler trace patch no longer required > Latest version of ltp fixes the problem and the patch > 0029-trace_shed-Fix-build-with-musl.patch no longer applies. > > Signed-off-by: Carlos Hernandez > --- > .../0029-trace_shed-Fix-build-with-musl.patch | 32 ---------------------- > .../{ltp-ddt_20160510.bb => ltp-ddt_20170116.bb} | 7 ++--- > 2 files changed, 3 insertions(+), 36 deletions(-) > delete mode 100644 meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt/0029-trace_shed-Fix-build-with-musl.patch > rename meta-arago-extras/recipes-devtools/ltp-ddt/{ltp-ddt_20160510.bb => ltp-ddt_20170116.bb} (92%) > > diff --git a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt/0029-trace_shed-Fix-build-with-musl.patch b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt/0029-trace_shed-Fix-build-with-musl.patch > deleted file mode 100644 > index f7ece9e18ef0..000000000000 > --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt/0029-trace_shed-Fix-build-with-musl.patch > +++ /dev/null > @@ -1,32 +0,0 @@ > -From 2f8a57f66a94210d34dd0361659a8297cf3d813f Mon Sep 17 00:00:00 2001 > -From: Khem Raj > -Date: Fri, 8 Jan 2016 07:29:24 +0000 > -Subject: [PATCH 29/32] trace_shed: Fix build with musl > - > -Errors on musl are > - > -trace_sched.c:425:16: error: invalid operands to binary & (have > -'thread_sched_t * {aka struct *}' and 'int') > - thrd_ndx, WEXITSTATUS(status)); > - > -Signed-off-by: Khem Raj > ---- > - testcases/kernel/sched/tool/trace_sched.c | 2 +- > - 1 file changed, 1 insertion(+), 1 deletion(-) > - > -diff --git a/testcases/kernel/sched/tool/trace_sched.c b/testcases/kernel/sched/tool/trace_sched.c > -index 7815686..30dca5f 100644 > ---- a/testcases/kernel/sched/tool/trace_sched.c > -+++ b/testcases/kernel/sched/tool/trace_sched.c > -@@ -422,7 +422,7 @@ int main(int argc, /* number of input parameters. */ > - if (status == (thread_sched_t *) - 1) { > - fprintf(stderr, > - "thread [%d] - process exited with errors %d\n", > -- thrd_ndx, WEXITSTATUS(status)); > -+ thrd_ndx, WEXITSTATUS((int)status)); > - exit(-1); > - } else { > - exp_prio[thrd_ndx] = status->exp_prio; > --- > -2.7.0 > - > diff --git a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20160510.bb b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20170116.bb > similarity index 92% > rename from meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20160510.bb > rename to meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20170116.bb > index 22b962141dba..2d78fa835c9f 100644 > --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20160510.bb > +++ b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20170116.bb > @@ -4,7 +4,7 @@ SECTION = "console/utils" > LICENSE = "GPLv2" > LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" > > -PR = "r10" > +PR = "r11" > PV_append = "+git${SRCPV}" > > PROVIDES += "ltp" > @@ -14,11 +14,10 @@ RDEPENDS_${PN} += "pm-qa serialcheck" > > inherit autotools-brokensep > > -SRCREV = "429d12779e28e1997f656db19c5bf73edf9e9365" > +SRCREV = "7b43afae8b931541388b0a7e6f65d7ceb6d01b3e" > BRANCH ?= "master" > > -SRC_URI = "git://arago-project.org/git/projects/test-automation/ltp-ddt.git;branch=${BRANCH} \ > - file://0029-trace_shed-Fix-build-with-musl.patch" > +SRC_URI = "git://arago-project.org/git/projects/test-automation/ltp-ddt.git;branch=${BRANCH}" > > S = "${WORKDIR}/git" > > -- > 2.7.4 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago