Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/4] Script and layer for running tests
@ 2013-11-27 17:08 Stefan Stanacar
  2013-11-27 17:08 ` [PATCH 1/4] scripts/oe-selftest: script to run builds as unittest against bitbake or various scripts Stefan Stanacar
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Stefan Stanacar @ 2013-11-27 17:08 UTC (permalink / raw)
  To: openembedded-core


Hello,

This series adds an oe-selftest script, some modules and a new layer meta-selftest.
which are meant to help in writing tests (using python unittest) for various
bitbake tools/scripts as well as simple output checks or do
complete builds with different options (with the emphasis that everything checked
is done outside of bitbake context, just like a human would do.) For more details,
please see YOCTO #4740.

Cheers,
Stefan

Changes since the RFC:
 - more tests added
 - tests are now in meta/lib/oeqa/selftest instead of scripts/lib/selftest/tests
 - small changes to some of the files in the meta-selftest layer
 - more cleanups done by default in the base class


The following changes since commit 32adaac34a614d106e6dd3e9f1130f4e94ff39ae:

  libpng: set reasonable SUMMARY (2013-11-27 11:51:25 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib stefans/selftest
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=stefans/selftest

Alexandru Palalau (1):
  lib/oeqa/selftest: buildoptions.py: add simple image build tests

Corneliu Stoicescu (2):
  meta-selftest: create a new test layer to be used by oe-selftest
    script
  lib/oeqa/selftest: add test modules for expected bitbake output and
    bitbake-layers

Stefan Stanacar (1):
  scripts/oe-selftest: script to run builds as unittest against bitbake
    or various scripts

 .gitignore                                         |   1 +
 meta-selftest/COPYING.MIT                          |  17 +++
 meta-selftest/README                               |   3 +
 meta-selftest/classes/test_events.bbclass          |  16 +++
 meta-selftest/conf/layer.conf                      |  10 ++
 .../recipes-test/aspell/aspell_0.0.0.1.bb          |  28 ++++
 .../recipes-test/aspell/aspell_0.60.6.1.bbappend   |   2 +
 meta-selftest/recipes-test/m4/m4_1.4.17.bbappend   |   2 +
 .../recipes-test/man/man/man-1.5h1-make.patch      |  16 +++
 meta-selftest/recipes-test/man/man_1.6g.bbappend   |   2 +
 .../xcursor-transparent-theme_0.1.1.bbappend       |   2 +
 meta/lib/oeqa/selftest/__init__.py                 |   2 +
 meta/lib/oeqa/selftest/base.py                     |  98 ++++++++++++++
 meta/lib/oeqa/selftest/bblayers.py                 |  37 ++++++
 meta/lib/oeqa/selftest/bbtests.py                  |  97 ++++++++++++++
 meta/lib/oeqa/selftest/buildoptions.py             |  86 ++++++++++++
 meta/lib/oeqa/utils/commands.py                    | 137 +++++++++++++++++++
 meta/lib/oeqa/utils/ftools.py                      |  27 ++++
 scripts/oe-selftest                                | 148 +++++++++++++++++++++
 19 files changed, 731 insertions(+)
 create mode 100644 meta-selftest/COPYING.MIT
 create mode 100644 meta-selftest/README
 create mode 100644 meta-selftest/classes/test_events.bbclass
 create mode 100644 meta-selftest/conf/layer.conf
 create mode 100644 meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb
 create mode 100644 meta-selftest/recipes-test/aspell/aspell_0.60.6.1.bbappend
 create mode 100644 meta-selftest/recipes-test/m4/m4_1.4.17.bbappend
 create mode 100644 meta-selftest/recipes-test/man/man/man-1.5h1-make.patch
 create mode 100644 meta-selftest/recipes-test/man/man_1.6g.bbappend
 create mode 100644 meta-selftest/recipes-test/xcursor-transparent-theme/xcursor-transparent-theme_0.1.1.bbappend
 create mode 100644 meta/lib/oeqa/selftest/__init__.py
 create mode 100644 meta/lib/oeqa/selftest/base.py
 create mode 100644 meta/lib/oeqa/selftest/bblayers.py
 create mode 100644 meta/lib/oeqa/selftest/bbtests.py
 create mode 100644 meta/lib/oeqa/selftest/buildoptions.py
 create mode 100644 meta/lib/oeqa/utils/commands.py
 create mode 100644 meta/lib/oeqa/utils/ftools.py
 create mode 100755 scripts/oe-selftest

-- 
1.8.3.1



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

end of thread, other threads:[~2013-11-28 22:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-27 17:08 [PATCH 0/4] Script and layer for running tests Stefan Stanacar
2013-11-27 17:08 ` [PATCH 1/4] scripts/oe-selftest: script to run builds as unittest against bitbake or various scripts Stefan Stanacar
2013-11-27 17:08 ` [PATCH 2/4] meta-selftest: create a new test layer to be used by oe-selftest script Stefan Stanacar
2013-11-27 17:08 ` [PATCH 3/4] lib/oeqa/selftest: buildoptions.py: add simple image build tests Stefan Stanacar
2013-11-27 17:08 ` [PATCH 4/4] lib/oeqa/selftest: add test modules for expected bitbake output and bitbake-layers Stefan Stanacar
2013-11-27 18:42 ` [PATCH 0/4] Script and layer for running tests Chris Larson
2013-11-28 10:17   ` Paul Eggleton
2013-11-28 20:29     ` Chris Larson
2013-11-28 22:30       ` Paul Eggleton

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