All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] strace: fix ptest execution failure
@ 2014-05-27  7:02 Chong Lu
  2014-05-27  7:02 ` [PATCH 1/1] " Chong Lu
  0 siblings, 1 reply; 6+ messages in thread
From: Chong Lu @ 2014-05-27  7:02 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 894df445fa71a170397c6e0b4960a89ef20a4230:

  guile: Update to 2.0.11 version (2014-05-21 19:50:21 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib chonglu/strace
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=chonglu/strace

Chong Lu (1):
  strace: fix ptest execution failure

 meta/recipes-devtools/strace/strace-4.8/run-ptest | 2 +-
 meta/recipes-devtools/strace/strace_4.8.bb        | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
1.8.1.2



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

* [PATCH 1/1] strace: fix ptest execution failure
  2014-05-27  7:02 [PATCH 0/1] strace: fix ptest execution failure Chong Lu
@ 2014-05-27  7:02 ` Chong Lu
  2014-05-27 15:16   ` Tudor Florea
  0 siblings, 1 reply; 6+ messages in thread
From: Chong Lu @ 2014-05-27  7:02 UTC (permalink / raw)
  To: openembedded-core

Modify ptest suite to make it execute successfully.

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
---
 meta/recipes-devtools/strace/strace-4.8/run-ptest | 2 +-
 meta/recipes-devtools/strace/strace_4.8.bb        | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/strace/strace-4.8/run-ptest b/meta/recipes-devtools/strace/strace-4.8/run-ptest
index 133cf92..66639fb 100755
--- a/meta/recipes-devtools/strace/strace-4.8/run-ptest
+++ b/meta/recipes-devtools/strace/strace-4.8/run-ptest
@@ -1,2 +1,2 @@
 #!/bin/sh
-make -C tests -k runtest-TESTS
+make -C tests -k check-TESTS
diff --git a/meta/recipes-devtools/strace/strace_4.8.bb b/meta/recipes-devtools/strace/strace_4.8.bb
index 71563d4..9769cd4 100644
--- a/meta/recipes-devtools/strace/strace_4.8.bb
+++ b/meta/recipes-devtools/strace/strace_4.8.bb
@@ -41,6 +41,12 @@ do_compile_ptest() {
 
 do_install_ptest() {
 	oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B} DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
+	install ${S}/test-driver ${D}${PTEST_PATH}
+	sed -e 's/bash/sh/' \
+	    -e 's/gawk/awk/' \
+	    -e 's/^top_srcdir = \(.*\)/top_srcdir = ../' \
+	    -e '/^all:/a\\t@:' \
+	    -i ${D}${PTEST_PATH}/${TESTDIR}/Makefile
 }
 
 BBCLASSEXTEND = "native"
-- 
1.8.1.2



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

* Re: [PATCH 1/1] strace: fix ptest execution failure
  2014-05-27  7:02 ` [PATCH 1/1] " Chong Lu
@ 2014-05-27 15:16   ` Tudor Florea
  2014-05-27 15:23     ` Saul Wold
  2014-05-28  1:25     ` Chong Lu
  0 siblings, 2 replies; 6+ messages in thread
From: Tudor Florea @ 2014-05-27 15:16 UTC (permalink / raw)
  To: Chong Lu, openembedded-core



> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org
> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf
> Of Chong Lu
> Sent: Tuesday, May 27, 2014 10:03
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core] [PATCH 1/1] strace: fix ptest execution failure
> 
> Modify ptest suite to make it execute successfully.
> 
> Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
> ---
>  meta/recipes-devtools/strace/strace-4.8/run-ptest | 2 +-
>  meta/recipes-devtools/strace/strace_4.8.bb        | 6 ++++++
>  2 files changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-devtools/strace/strace-4.8/run-ptest
> b/meta/recipes-devtools/strace/strace-4.8/run-ptest
> index 133cf92..66639fb 100755
> --- a/meta/recipes-devtools/strace/strace-4.8/run-ptest
> +++ b/meta/recipes-devtools/strace/strace-4.8/run-ptest
> @@ -1,2 +1,2 @@
>  #!/bin/sh
> -make -C tests -k runtest-TESTS
> +make -C tests -k check-TESTS
I have the same comment as in the previous patch. I'd rather use serial-tests in configure.ac file instead of this change.

> diff --git a/meta/recipes-devtools/strace/strace_4.8.bb b/meta/recipes-
> devtools/strace/strace_4.8.bb
> index 71563d4..9769cd4 100644
> --- a/meta/recipes-devtools/strace/strace_4.8.bb
> +++ b/meta/recipes-devtools/strace/strace_4.8.bb
> @@ -41,6 +41,12 @@ do_compile_ptest() {
> 
>  do_install_ptest() {
>  	oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B}
> DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
> +	install ${S}/test-driver ${D}${PTEST_PATH}
> +	sed -e 's/bash/sh/' \
> +	    -e 's/gawk/awk/' \
> +	    -e 's/^top_srcdir = \(.*\)/top_srcdir = ../' \
> +	    -e '/^all:/a\\t@:' \
> +	    -i ${D}${PTEST_PATH}/${TESTDIR}/Makefile
>  }
> 
>  BBCLASSEXTEND = "native"
> --
> 1.8.1.2
> 
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH 1/1] strace: fix ptest execution failure
  2014-05-27 15:16   ` Tudor Florea
@ 2014-05-27 15:23     ` Saul Wold
  2014-05-28 14:38       ` Tudor Florea
  2014-05-28  1:25     ` Chong Lu
  1 sibling, 1 reply; 6+ messages in thread
From: Saul Wold @ 2014-05-27 15:23 UTC (permalink / raw)
  To: Tudor Florea, Chong Lu, openembedded-core

On 05/27/2014 08:16 AM, Tudor Florea wrote:
>
>
>> -----Original Message-----
>> From: openembedded-core-bounces@lists.openembedded.org
>> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf
>> Of Chong Lu
>> Sent: Tuesday, May 27, 2014 10:03
>> To: openembedded-core@lists.openembedded.org
>> Subject: [OE-core] [PATCH 1/1] strace: fix ptest execution failure
>>
>> Modify ptest suite to make it execute successfully.
>>
>> Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
>> ---
>>   meta/recipes-devtools/strace/strace-4.8/run-ptest | 2 +-
>>   meta/recipes-devtools/strace/strace_4.8.bb        | 6 ++++++
>>   2 files changed, 7 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> b/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> index 133cf92..66639fb 100755
>> --- a/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> +++ b/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> @@ -1,2 +1,2 @@
>>   #!/bin/sh
>> -make -C tests -k runtest-TESTS
>> +make -C tests -k check-TESTS
> I have the same comment as in the previous patch. I'd rather use serial-tests in configure.ac file instead of this change.
>
You mentioned a past patch not merged, can you rebase against master and 
resent if it's still appropriate?

Thanks
	Sau!

>> diff --git a/meta/recipes-devtools/strace/strace_4.8.bb b/meta/recipes-
>> devtools/strace/strace_4.8.bb
>> index 71563d4..9769cd4 100644
>> --- a/meta/recipes-devtools/strace/strace_4.8.bb
>> +++ b/meta/recipes-devtools/strace/strace_4.8.bb
>> @@ -41,6 +41,12 @@ do_compile_ptest() {
>>
>>   do_install_ptest() {
>>   	oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B}
>> DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
>> +	install ${S}/test-driver ${D}${PTEST_PATH}
>> +	sed -e 's/bash/sh/' \
>> +	    -e 's/gawk/awk/' \
>> +	    -e 's/^top_srcdir = \(.*\)/top_srcdir = ../' \
>> +	    -e '/^all:/a\\t@:' \
>> +	    -i ${D}${PTEST_PATH}/${TESTDIR}/Makefile
>>   }
>>
>>   BBCLASSEXTEND = "native"
>> --
>> 1.8.1.2
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH 1/1] strace: fix ptest execution failure
  2014-05-27 15:16   ` Tudor Florea
  2014-05-27 15:23     ` Saul Wold
@ 2014-05-28  1:25     ` Chong Lu
  1 sibling, 0 replies; 6+ messages in thread
From: Chong Lu @ 2014-05-28  1:25 UTC (permalink / raw)
  To: Tudor Florea, openembedded-core


On 05/27/2014 11:16 PM, Tudor Florea wrote:
>
>> -----Original Message-----
>> From: openembedded-core-bounces@lists.openembedded.org
>> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf
>> Of Chong Lu
>> Sent: Tuesday, May 27, 2014 10:03
>> To: openembedded-core@lists.openembedded.org
>> Subject: [OE-core] [PATCH 1/1] strace: fix ptest execution failure
>>
>> Modify ptest suite to make it execute successfully.
>>
>> Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
>> ---
>>   meta/recipes-devtools/strace/strace-4.8/run-ptest | 2 +-
>>   meta/recipes-devtools/strace/strace_4.8.bb        | 6 ++++++
>>   2 files changed, 7 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> b/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> index 133cf92..66639fb 100755
>> --- a/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> +++ b/meta/recipes-devtools/strace/strace-4.8/run-ptest
>> @@ -1,2 +1,2 @@
>>   #!/bin/sh
>> -make -C tests -k runtest-TESTS
>> +make -C tests -k check-TESTS
> I have the same comment as in the previous patch. I'd rather use serial-tests in configure.ac file instead of this change.
Ok. Thanks for your suggestion.

Best Regards
Chong
>
>> diff --git a/meta/recipes-devtools/strace/strace_4.8.bb b/meta/recipes-
>> devtools/strace/strace_4.8.bb
>> index 71563d4..9769cd4 100644
>> --- a/meta/recipes-devtools/strace/strace_4.8.bb
>> +++ b/meta/recipes-devtools/strace/strace_4.8.bb
>> @@ -41,6 +41,12 @@ do_compile_ptest() {
>>
>>   do_install_ptest() {
>>   	oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B}
>> DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
>> +	install ${S}/test-driver ${D}${PTEST_PATH}
>> +	sed -e 's/bash/sh/' \
>> +	    -e 's/gawk/awk/' \
>> +	    -e 's/^top_srcdir = \(.*\)/top_srcdir = ../' \
>> +	    -e '/^all:/a\\t@:' \
>> +	    -i ${D}${PTEST_PATH}/${TESTDIR}/Makefile
>>   }
>>
>>   BBCLASSEXTEND = "native"
>> --
>> 1.8.1.2
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>



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

* Re: [PATCH 1/1] strace: fix ptest execution failure
  2014-05-27 15:23     ` Saul Wold
@ 2014-05-28 14:38       ` Tudor Florea
  0 siblings, 0 replies; 6+ messages in thread
From: Tudor Florea @ 2014-05-28 14:38 UTC (permalink / raw)
  To: Saul Wold, Chong Lu, openembedded-core



> -----Original Message-----
> From: Saul Wold [mailto:sgw@linux.intel.com]
> Sent: Tuesday, May 27, 2014 18:23
> To: Tudor Florea; Chong Lu; openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH 1/1] strace: fix ptest execution failure
> 
> On 05/27/2014 08:16 AM, Tudor Florea wrote:
> >
> >
> >> -----Original Message-----
> >> From: openembedded-core-bounces@lists.openembedded.org
> >> [mailto:openembedded-core-bounces@lists.openembedded.org] On
> Behalf
> >> Of Chong Lu
> >> Sent: Tuesday, May 27, 2014 10:03
> >> To: openembedded-core@lists.openembedded.org
> >> Subject: [OE-core] [PATCH 1/1] strace: fix ptest execution failure
> >>
> >> Modify ptest suite to make it execute successfully.
> >>
> >> Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
> >> ---
> >>   meta/recipes-devtools/strace/strace-4.8/run-ptest | 2 +-
> >>   meta/recipes-devtools/strace/strace_4.8.bb        | 6 ++++++
> >>   2 files changed, 7 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/meta/recipes-devtools/strace/strace-4.8/run-ptest
> >> b/meta/recipes-devtools/strace/strace-4.8/run-ptest
> >> index 133cf92..66639fb 100755
> >> --- a/meta/recipes-devtools/strace/strace-4.8/run-ptest
> >> +++ b/meta/recipes-devtools/strace/strace-4.8/run-ptest
> >> @@ -1,2 +1,2 @@
> >>   #!/bin/sh
> >> -make -C tests -k runtest-TESTS
> >> +make -C tests -k check-TESTS
> > I have the same comment as in the previous patch. I'd rather use serial-
> tests in configure.ac file instead of this change.
> >
> You mentioned a past patch not merged, can you rebase against master and
> resent if it's still appropriate?
> 
> Thanks
> 	Sau!
> 
I'll review and resend the patch I a couple of days.
Regards,
Tudor.
> >> diff --git a/meta/recipes-devtools/strace/strace_4.8.bb b/meta/recipes-
> >> devtools/strace/strace_4.8.bb
> >> index 71563d4..9769cd4 100644
> >> --- a/meta/recipes-devtools/strace/strace_4.8.bb
> >> +++ b/meta/recipes-devtools/strace/strace_4.8.bb
> >> @@ -41,6 +41,12 @@ do_compile_ptest() {
> >>
> >>   do_install_ptest() {
> >>   	oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B}
> >> DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
> >> +	install ${S}/test-driver ${D}${PTEST_PATH}
> >> +	sed -e 's/bash/sh/' \
> >> +	    -e 's/gawk/awk/' \
> >> +	    -e 's/^top_srcdir = \(.*\)/top_srcdir = ../' \
> >> +	    -e '/^all:/a\\t@:' \
> >> +	    -i ${D}${PTEST_PATH}/${TESTDIR}/Makefile
> >>   }
> >>
> >>   BBCLASSEXTEND = "native"
> >> --
> >> 1.8.1.2
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-core mailing list
> >> Openembedded-core@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

end of thread, other threads:[~2014-05-28 14:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-27  7:02 [PATCH 0/1] strace: fix ptest execution failure Chong Lu
2014-05-27  7:02 ` [PATCH 1/1] " Chong Lu
2014-05-27 15:16   ` Tudor Florea
2014-05-27 15:23     ` Saul Wold
2014-05-28 14:38       ` Tudor Florea
2014-05-28  1:25     ` Chong Lu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.