Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH v2 0/9] Some fixes for the testimage class
@ 2013-07-15 14:42 Stefan Stanacar
  2013-07-15 14:42 ` [PATCH v2 1/9] lib/oeqa/runtime/dmesg.py: whitelist dmesg message for systemd net interface name Stefan Stanacar
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Stefan Stanacar @ 2013-07-15 14:42 UTC (permalink / raw)
  To: openembedded-core

Hello,

These are some fixes for the testimage.bbclass and tests and
also two new tests.

Changed in v2:
   - fixed the syslog tests for systemd builds
   - new patch (9) which fixes the dependency check between tests

Cheers,
Stefan


The following changes since commit 74e403705e25afec656b5e40921771a9c29bdc40:

  yocto-kernel: make BBLAYERS parsing more robust (2013-07-13 18:23:39 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib stefans/oeqa9

for you to fetch changes up to 4d06d05ef481537369dd646b114f617a2bc7f8a4:

  lib/oeqa: fix dependecy check (2013-07-15 17:37:57 +0300)

----------------------------------------------------------------
Alexandru Palalau (1):
      lib/oeqa/runtime: add tests for syslog and df

Stefan Stanacar (8):
      lib/oeqa/runtime/dmesg.py: whitelist dmesg message for systemd net interface name
      lib/oeqa/utils/sshcontrol.py: fix passing command to subprocess
      testimage.bbclass, lib/oeqa/utils/qemurunner.py: make boot timeout configurable and increase it
      lib/oeqa/runtime/multilib.py: use readelf instead of file
      lib/oeqa/oetest.py: provide a ps command for all tests
      classes/testimage.bbclass: use a copy of rootfs for tests
      testimage.bbclass, lib/oeqa: add headers and comments
      lib/oeqa: fix dependecy check

 meta/classes/testimage.bbclass    | 43 +++++++++++++++++++++++++++++++---
 meta/lib/oeqa/oetest.py           | 14 ++++++++---
 meta/lib/oeqa/runtime/connman.py  |  5 ----
 meta/lib/oeqa/runtime/df.py       | 13 +++++++++++
 meta/lib/oeqa/runtime/dmesg.py    |  2 +-
 meta/lib/oeqa/runtime/multilib.py |  9 ++++---
 meta/lib/oeqa/runtime/smart.py    |  1 +
 meta/lib/oeqa/runtime/syslog.py   | 37 +++++++++++++++++++++++++++++
 meta/lib/oeqa/utils/decorators.py | 12 +++++++++-
 meta/lib/oeqa/utils/qemurunner.py | 12 +++++-----
 meta/lib/oeqa/utils/sshcontrol.py | 49 +++++++++++++++++++++------------------
 11 files changed, 152 insertions(+), 45 deletions(-)
 create mode 100644 meta/lib/oeqa/runtime/df.py
 create mode 100644 meta/lib/oeqa/runtime/syslog.py

Alexandru Palalau (1):
  lib/oeqa/runtime: add tests for syslog and df

Stefan Stanacar (8):
  lib/oeqa/runtime/dmesg.py: whitelist dmesg message for systemd net
    interface name
  lib/oeqa/utils/sshcontrol.py: fix passing command to subprocess
  testimage.bbclass, lib/oeqa/utils/qemurunner.py: make boot timeout
    configurable and increase it
  lib/oeqa/runtime/multilib.py: use readelf instead of file
  lib/oeqa/oetest.py: provide a ps command for all tests
  classes/testimage.bbclass: use a copy of rootfs for tests
  testimage.bbclass, lib/oeqa: add headers and comments
  lib/oeqa: fix dependecy check

 meta/classes/testimage.bbclass    | 43 +++++++++++++++++++++++++++++++---
 meta/lib/oeqa/oetest.py           | 14 ++++++++---
 meta/lib/oeqa/runtime/connman.py  |  5 ----
 meta/lib/oeqa/runtime/df.py       | 13 +++++++++++
 meta/lib/oeqa/runtime/dmesg.py    |  2 +-
 meta/lib/oeqa/runtime/multilib.py |  9 ++++---
 meta/lib/oeqa/runtime/smart.py    |  1 +
 meta/lib/oeqa/runtime/syslog.py   | 37 +++++++++++++++++++++++++++++
 meta/lib/oeqa/utils/decorators.py | 12 +++++++++-
 meta/lib/oeqa/utils/qemurunner.py | 12 +++++-----
 meta/lib/oeqa/utils/sshcontrol.py | 49 +++++++++++++++++++++------------------
 11 files changed, 152 insertions(+), 45 deletions(-)
 create mode 100644 meta/lib/oeqa/runtime/df.py
 create mode 100644 meta/lib/oeqa/runtime/syslog.py

-- 
1.8.3.1



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

end of thread, other threads:[~2013-07-15 14:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-15 14:42 [PATCH v2 0/9] Some fixes for the testimage class Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 1/9] lib/oeqa/runtime/dmesg.py: whitelist dmesg message for systemd net interface name Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 2/9] lib/oeqa/utils/sshcontrol.py: fix passing command to subprocess Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 3/9] testimage.bbclass, lib/oeqa/utils/qemurunner.py: make boot timeout configurable and increase it Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 4/9] lib/oeqa/runtime/multilib.py: use readelf instead of file Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 5/9] lib/oeqa/oetest.py: provide a ps command for all tests Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 6/9] lib/oeqa/runtime: add tests for syslog and df Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 7/9] classes/testimage.bbclass: use a copy of rootfs for tests Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 8/9] testimage.bbclass, lib/oeqa: add headers and comments Stefan Stanacar
2013-07-15 14:42 ` [PATCH v2 9/9] lib/oeqa: fix dependecy check Stefan Stanacar

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