Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] piglit: add bash to RDEPENDS_piglit
@ 2014-09-02  9:41 Robert Yang
  2014-09-02  9:41 ` [PATCH 1/1] " Robert Yang
  0 siblings, 1 reply; 7+ messages in thread
From: Robert Yang @ 2014-09-02  9:41 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 4c0a9ccbad2889b27b4b1d2ab91215a4bdcca3ce:

  python-numpy: Fix build for mips64 (2014-09-01 18:00:32 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/piglit
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/piglit

Robert Yang (1):
  piglit: add bash to RDEPENDS_piglit

 meta/recipes-graphics/piglit/piglit_git.bb |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/1] piglit: add bash to RDEPENDS_piglit
  2014-09-02  9:41 [PATCH 0/1] piglit: add bash to RDEPENDS_piglit Robert Yang
@ 2014-09-02  9:41 ` Robert Yang
  2014-09-02  9:52   ` Henning Heinold
  2014-09-02 10:19   ` Burton, Ross
  0 siblings, 2 replies; 7+ messages in thread
From: Robert Yang @ 2014-09-02  9:41 UTC (permalink / raw)
  To: openembedded-core

Bash:
piglit/usr/lib/piglit/tests/asmparsertest/make_test_list.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/asmparsertest/vp-tex.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/spec/glsl-1.10/variable-index-read.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/spec/glsl-1.10/variable-index-write.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/spec/arb_shader_texture_lod/compiler/make_tex_lod_tests.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/spec/glsl-1.20/execution/outerProduct-const.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/spec/glsl-1.20/execution/outerProduct.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/spec/glsl-1.20/compiler/built-in-functions/outerProduct-invalid-parameters.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/glslparsertest/glsl2/make_tex_lod_tests.sh:#!/bin/bash
piglit/usr/lib/piglit/tests/glslparsertest/glsl2/make_tex_rect_tests.sh:#!/bin/bash

The bash scripts are in the tests directory, we had planned to move the
tests into the ptest pkg, but that would make piglit unusable without
installing piglit-ptest.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-graphics/piglit/piglit_git.bb |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index 5c013ef..f468120 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -45,4 +45,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"
+RDEPENDS_${PN} = "python waffle python-json python-subprocess \
+	python-multiprocessing python-textutils python-netserver python-shell \
+	mesa-demos bash \
+	"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/1] piglit: add bash to RDEPENDS_piglit
  2014-09-02  9:41 ` [PATCH 1/1] " Robert Yang
@ 2014-09-02  9:52   ` Henning Heinold
  2014-09-02  9:57     ` Robert Yang
  2014-09-02 10:18     ` Burton, Ross
  2014-09-02 10:19   ` Burton, Ross
  1 sibling, 2 replies; 7+ messages in thread
From: Henning Heinold @ 2014-09-02  9:52 UTC (permalink / raw)
  To: openembedded-core

On Tue, Sep 02, 2014 at 02:41:49AM -0700, Robert Yang wrote:
> Bash:
> piglit/usr/lib/piglit/tests/asmparsertest/make_test_list.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/asmparsertest/vp-tex.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/spec/glsl-1.10/variable-index-read.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/spec/glsl-1.10/variable-index-write.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/spec/arb_shader_texture_lod/compiler/make_tex_lod_tests.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/spec/glsl-1.20/execution/outerProduct-const.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/spec/glsl-1.20/execution/outerProduct.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/spec/glsl-1.20/compiler/built-in-functions/outerProduct-invalid-parameters.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/glslparsertest/glsl2/make_tex_lod_tests.sh:#!/bin/bash
> piglit/usr/lib/piglit/tests/glslparsertest/glsl2/make_tex_rect_tests.sh:#!/bin/bash
> 
> The bash scripts are in the tests directory, we had planned to move the
> tests into the ptest pkg, but that would make piglit unusable without
> installing piglit-ptest.
> 
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
>  meta/recipes-graphics/piglit/piglit_git.bb |    5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
> index 5c013ef..f468120 100644
> --- a/meta/recipes-graphics/piglit/piglit_git.bb
> +++ b/meta/recipes-graphics/piglit/piglit_git.bb
> @@ -45,4 +45,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"
> +RDEPENDS_${PN} = "python waffle python-json python-subprocess \
> +	python-multiprocessing python-textutils python-netserver python-shell \
> +	mesa-demos bash \
> +	"
> -- 

Hi Robert,

how about to split out the tests into an extra package and let the package depends on bash?

Bye Henning


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/1] piglit: add bash to RDEPENDS_piglit
  2014-09-02  9:52   ` Henning Heinold
@ 2014-09-02  9:57     ` Robert Yang
  2014-09-02 10:18     ` Burton, Ross
  1 sibling, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-09-02  9:57 UTC (permalink / raw)
  To: Henning Heinold, openembedded-core



On 09/02/2014 05:52 PM, Henning Heinold wrote:
> On Tue, Sep 02, 2014 at 02:41:49AM -0700, Robert Yang wrote:
>> Bash:
>> piglit/usr/lib/piglit/tests/asmparsertest/make_test_list.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/asmparsertest/vp-tex.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/spec/glsl-1.10/variable-index-read.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/spec/glsl-1.10/variable-index-write.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/spec/arb_shader_texture_lod/compiler/make_tex_lod_tests.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/spec/glsl-1.20/execution/outerProduct-const.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/spec/glsl-1.20/execution/outerProduct.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/spec/glsl-1.20/compiler/built-in-functions/outerProduct-invalid-parameters.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/glslparsertest/glsl2/make_tex_lod_tests.sh:#!/bin/bash
>> piglit/usr/lib/piglit/tests/glslparsertest/glsl2/make_tex_rect_tests.sh:#!/bin/bash
>>
>> The bash scripts are in the tests directory, we had planned to move the
>> tests into the ptest pkg, but that would make piglit unusable without
>> installing piglit-ptest.
>>
>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>> ---
>>   meta/recipes-graphics/piglit/piglit_git.bb |    5 ++++-
>>   1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
>> index 5c013ef..f468120 100644
>> --- a/meta/recipes-graphics/piglit/piglit_git.bb
>> +++ b/meta/recipes-graphics/piglit/piglit_git.bb
>> @@ -45,4 +45,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"
>> +RDEPENDS_${PN} = "python waffle python-json python-subprocess \
>> +	python-multiprocessing python-textutils python-netserver python-shell \
>> +	mesa-demos bash \
>> +	"
>> --
>
> Hi Robert,
>
> how about to split out the tests into an extra package and let the package depends on bash?

That was the initial plan, but it didn't work as Ross commented, please
see this thread for more info:

http://lists.openembedded.org/pipermail/openembedded-core/2014-August/096438.html

// Robert

>
> Bye Henning
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/1] piglit: add bash to RDEPENDS_piglit
  2014-09-02  9:52   ` Henning Heinold
  2014-09-02  9:57     ` Robert Yang
@ 2014-09-02 10:18     ` Burton, Ross
  1 sibling, 0 replies; 7+ messages in thread
From: Burton, Ross @ 2014-09-02 10:18 UTC (permalink / raw)
  To: Henning Heinold; +Cc: OE-core

On 2 September 2014 10:52, Henning Heinold
<henning@itconsulting-heinold.de> wrote:
> how about to split out the tests into an extra package and let the package depends on bash?

Piglit is a test suite.  A test suite without tests doesn't make sense. :)

Ross


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/1] piglit: add bash to RDEPENDS_piglit
  2014-09-02  9:41 ` [PATCH 1/1] " Robert Yang
  2014-09-02  9:52   ` Henning Heinold
@ 2014-09-02 10:19   ` Burton, Ross
  2014-09-02 11:17     ` Robert Yang
  1 sibling, 1 reply; 7+ messages in thread
From: Burton, Ross @ 2014-09-02 10:19 UTC (permalink / raw)
  To: Robert Yang; +Cc: OE-core

On 2 September 2014 10:41, Robert Yang <liezhi.yang@windriver.com> wrote:
> The bash scripts are in the tests directory, we had planned to move the
> tests into the ptest pkg, but that would make piglit unusable without
> installing piglit-ptest.

Will there be a follow-up to add the ptest support?

Ross


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/1] piglit: add bash to RDEPENDS_piglit
  2014-09-02 10:19   ` Burton, Ross
@ 2014-09-02 11:17     ` Robert Yang
  0 siblings, 0 replies; 7+ messages in thread
From: Robert Yang @ 2014-09-02 11:17 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core



On 09/02/2014 06:19 PM, Burton, Ross wrote:
> On 2 September 2014 10:41, Robert Yang <liezhi.yang@windriver.com> wrote:
>> The bash scripts are in the tests directory, we had planned to move the
>> tests into the ptest pkg, but that would make piglit unusable without
>> installing piglit-ptest.
>
> Will there be a follow-up to add the ptest support?

Yes, I think so, Chong had done that, he will update the ptest patch.

// Robert

>
> Ross
>
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-09-02 11:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-02  9:41 [PATCH 0/1] piglit: add bash to RDEPENDS_piglit Robert Yang
2014-09-02  9:41 ` [PATCH 1/1] " Robert Yang
2014-09-02  9:52   ` Henning Heinold
2014-09-02  9:57     ` Robert Yang
2014-09-02 10:18     ` Burton, Ross
2014-09-02 10:19   ` Burton, Ross
2014-09-02 11:17     ` Robert Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox