From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail1.windriver.com (mail1.windriver.com [147.11.146.13]) by mail.openembedded.org (Postfix) with ESMTP id 540376FCA3 for ; Tue, 2 Sep 2014 02:14:43 +0000 (UTC) Received: from ALA-HCB.corp.ad.wrs.com (ala-hcb.corp.ad.wrs.com [147.11.189.41]) by mail1.windriver.com (8.14.9/8.14.5) with ESMTP id s822EhdP003404 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Mon, 1 Sep 2014 19:14:43 -0700 (PDT) Received: from [128.224.162.181] (128.224.162.181) by ALA-HCB.corp.ad.wrs.com (147.11.189.41) with Microsoft SMTP Server id 14.3.174.1; Mon, 1 Sep 2014 19:14:42 -0700 Message-ID: <54052811.50209@windriver.com> Date: Tue, 2 Sep 2014 10:14:41 +0800 From: Robert Yang User-Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: "Burton, Ross" , Chong Lu References: In-Reply-To: Cc: OE-core Subject: Re: [PATCH 1/1] piglit: enable ptest support X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Sep 2014 02:14:45 -0000 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit On 08/28/2014 10:09 PM, Burton, Ross wrote: > On 18 August 2014 06:39, Chong Lu wrote: >> +env PIGLIT_BUILD_DIR=`pwd`/.. piglit-run.py `pwd`/tests/sanity.tests `pwd`/results/sanity.results 2>&1 > > You shouldn't need to set PIGLIT_BUILD_DIR. > > The sanity tests are very basic so this won't count as "running > piglit" in any meaningful QA sense. > >> @@ -36,7 +37,6 @@ do_install() { >> cp -Pr lib/ ${D}${libdir}/piglit/ >> cp -Pr framework/ ${D}${libdir}/piglit/ >> cp -Pr generated_tests/ ${D}${libdir}/piglit/ >> - cp -Pr tests/ ${D}${libdir}/piglit/ >> cp -Pr templates/ ${D}${libdir}/piglit/ >> >> sed -i -e 's|sys.path.append(.*)|sys.path.append("${libdir}/piglit")|' ${D}${bindir}/piglit-*.py >> @@ -46,3 +46,7 @@ do_install() { >> FILES_${PN}-dbg += "${libdir}/piglit/*/.debug/" >> >> RDEPENDS_${PN} = "python waffle python-json python-subprocess python-multiprocessing python-textutils python-netserver python-shell mesa-demos" >> + >> +do_install_ptest() { >> + cp -Pr tests/ ${D}${PTEST_PATH}/ >> +} > > Why move the tests directory to the -ptests package? That makes > piglit unusable without installing piglit-ptest. Hello, if we keep the tests dir in piglit, shall we add perl to the RDEPENDS ? There are perl scripts in the tests dir. // Robert > > I agree that piglit should be ptest-enabled, but the piglit-ptest > package should simply depend on piglit and contain the runner script. > > Ross >