All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [yocto-autobuilder] buildsteps/RunOeSelftest.py: change the way oe-selftest is called
  2014-08-20 12:57 [yocto-autobuilder] buildsteps/RunOeSelftest.py: change the way oe-selftest is called Corneliu Stoicescu
@ 2014-08-20 10:53 ` Stoicescu, CorneliuX
  2014-08-27 17:19 ` Flanagan, Elizabeth
  1 sibling, 0 replies; 3+ messages in thread
From: Stoicescu, CorneliuX @ 2014-08-20 10:53 UTC (permalink / raw)
  To: yocto

This patch is regarding the recent oe-selftest failures on the AB, such as:

https://autobuilder.yoctoproject.org/main/builders/nightly-oe-selftest/builds/16/steps/Running%20oe-selftest/logs/stdio

Regards,
Corneliu

> -----Original Message-----
> From: Stoicescu, CorneliuX
> Sent: Wednesday, August 20, 2014 3:58 PM
> To: yocto@yoctoproject.org
> Cc: Stoicescu, CorneliuX
> Subject: [yocto-autobuilder] buildsteps/RunOeSelftest.py: change the way
> oe-selftest is called
> 
> A recent patch went in poky master that added command line parsing and
> options to the oe-selftest script.
> Changing the way oe-selftest is called by the autobuilder to account for
> these changes.
> 
> Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
> ---
>  lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/python2.7/site-
> packages/autobuilder/buildsteps/RunOeSelftest.py b/lib/python2.7/site-
> packages/autobuilder/buildsteps/RunOeSelftest.py
> index 0efddd7..3d95583 100644
> --- a/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
> +++ b/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
> @@ -22,5 +22,5 @@ class RunOeSelftest(ShellCommand):
>          self.description = "Running oe-selftest"
>          self.timeout = 100000
>          kwargs['timeout']=self.timeout
> -        self.command = "if [ -d meta-selftest ]; then . ./oe-init-build-env; oe-
> selftest; else echo 'Skipping step - no meta-selftest layer here'; fi"
> +        self.command = "if [ -d meta-selftest ]; then . ./oe-init-build-env; oe-
> selftest --run-all-tests; else echo 'Skipping step - no meta-selftest layer here';
> fi"
>          ShellCommand.__init__(self, **kwargs)
> --
> 1.8.3.2



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

* [yocto-autobuilder] buildsteps/RunOeSelftest.py: change the way oe-selftest is called
@ 2014-08-20 12:57 Corneliu Stoicescu
  2014-08-20 10:53 ` Stoicescu, CorneliuX
  2014-08-27 17:19 ` Flanagan, Elizabeth
  0 siblings, 2 replies; 3+ messages in thread
From: Corneliu Stoicescu @ 2014-08-20 12:57 UTC (permalink / raw)
  To: yocto

A recent patch went in poky master that added command line parsing and options to the oe-selftest script.
Changing the way oe-selftest is called by the autobuilder to account for these changes.

Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
---
 lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py b/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
index 0efddd7..3d95583 100644
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
+++ b/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
@@ -22,5 +22,5 @@ class RunOeSelftest(ShellCommand):
         self.description = "Running oe-selftest"
         self.timeout = 100000
         kwargs['timeout']=self.timeout
-        self.command = "if [ -d meta-selftest ]; then . ./oe-init-build-env; oe-selftest; else echo 'Skipping step - no meta-selftest layer here'; fi"
+        self.command = "if [ -d meta-selftest ]; then . ./oe-init-build-env; oe-selftest --run-all-tests; else echo 'Skipping step - no meta-selftest layer here'; fi"
         ShellCommand.__init__(self, **kwargs)
-- 
1.8.3.2



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

* Re: [yocto-autobuilder] buildsteps/RunOeSelftest.py: change the way oe-selftest is called
  2014-08-20 12:57 [yocto-autobuilder] buildsteps/RunOeSelftest.py: change the way oe-selftest is called Corneliu Stoicescu
  2014-08-20 10:53 ` Stoicescu, CorneliuX
@ 2014-08-27 17:19 ` Flanagan, Elizabeth
  1 sibling, 0 replies; 3+ messages in thread
From: Flanagan, Elizabeth @ 2014-08-27 17:19 UTC (permalink / raw)
  To: Corneliu Stoicescu; +Cc: yocto

On Wed, Aug 20, 2014 at 5:57 AM, Corneliu Stoicescu
<corneliux.stoicescu@intel.com> wrote:
> A recent patch went in poky master that added command line parsing and options to the oe-selftest script.
> Changing the way oe-selftest is called by the autobuilder to account for these changes.
>
> Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
> ---
>  lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py b/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
> index 0efddd7..3d95583 100644
> --- a/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
> +++ b/lib/python2.7/site-packages/autobuilder/buildsteps/RunOeSelftest.py
> @@ -22,5 +22,5 @@ class RunOeSelftest(ShellCommand):
>          self.description = "Running oe-selftest"
>          self.timeout = 100000
>          kwargs['timeout']=self.timeout
> -        self.command = "if [ -d meta-selftest ]; then . ./oe-init-build-env; oe-selftest; else echo 'Skipping step - no meta-selftest layer here'; fi"
> +        self.command = "if [ -d meta-selftest ]; then . ./oe-init-build-env; oe-selftest --run-all-tests; else echo 'Skipping step - no meta-selftest layer here'; fi"
>          ShellCommand.__init__(self, **kwargs)
> --
> 1.8.3.2
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

Pulled into master. Pushing into Production this afternoon. Thanks!

-- 
Elizabeth Flanagan
Yocto Project
Build and Release


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

end of thread, other threads:[~2014-08-27 17:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-20 12:57 [yocto-autobuilder] buildsteps/RunOeSelftest.py: change the way oe-selftest is called Corneliu Stoicescu
2014-08-20 10:53 ` Stoicescu, CorneliuX
2014-08-27 17:19 ` Flanagan, Elizabeth

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.