All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/20] QA updates
@ 2019-11-12  4:33 Armin Kuster
  2019-11-12  4:33 ` [PATCH 01/20] OEQA: Add a check for MACHINE Armin Kuster
                   ` (19 more replies)
  0 siblings, 20 replies; 25+ messages in thread
From: Armin Kuster @ 2019-11-12  4:33 UTC (permalink / raw)
  To: openembedded-core

This series moves several manual tests to selftest, deletes others and some cleanup.
Deletes manual tests covered by runtime or selftests.
Deletes eclipse manual test resulting in three manual json files removed.


The following changes since commit 4dc804b2deda249f72c6941639e781dfe6ca865e:

  systemd: Add runtime dependency on new ldconfig package (2019-11-11 14:07:01 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib akuster/qa
  http://cgit.openembedded.org/openembedded-core-contrib/log/?h=akuster/qa

Armin Kuster (20):
  OEQA: Add a check for MACHINE
  OEQA: Add qemu checks
  OEQA: Centrilize the base LTP routines
  OEQA: update ltp runtimes to use new structure
  OEQA/runtime: Add ltp stress test
  OEQA/manual: remove crash stress test
  manual qa: drop ltpstress test
  manual qa/bsp-qemu: remove rpm tests already done in runtime
  manual qa/bsp-qemu: remove KVM enabled which is already done in
    selftest runqemu
  manual/bsp-qemu: drop xserver test done at runtime
  manual/bsp-qemu: remove only_one_connmand_in_background test done at
    runtime
  OEQA: remove postinit test done w/selftest runtime
  OEQA: eclipse support was dropped in warrior
  OEQA: move manual bash test to runtime
  OEQA: remove manual bash test
  OEQA: remove manual useradd test
  OEQA: move list-packageconfig-flags tests from manual to self
  OEQA: remove manual PACKAGECONFIG_FLAGS tests
  OEQA: add crosstab selftest
  OEQA: remove crosstab test from manual

 meta/lib/oeqa/core/decorator/data.py          |  89 +++++++
 meta/lib/oeqa/manual/bsp-qemu.json            | 222 ------------------
 meta/lib/oeqa/manual/compliance-test.json     |  76 ------
 meta/lib/oeqa/manual/eclipse-plugin.json      | 322 --------------------------
 meta/lib/oeqa/manual/oe-core.json             |  78 +------
 meta/lib/oeqa/runtime/cases/ltp.py            |  85 +------
 meta/lib/oeqa/runtime/cases/ltp_compliance.py |  73 +-----
 meta/lib/oeqa/runtime/cases/ltp_stress.py     |  29 +++
 meta/lib/oeqa/selftest/cases/oescripts.py     |  59 +++++
 meta/lib/oeqa/selftest/cases/runtime_test.py  |  95 ++++++++
 meta/lib/oeqa/utils/ltp.py                    | 133 +++++++++++
 11 files changed, 413 insertions(+), 848 deletions(-)
 delete mode 100644 meta/lib/oeqa/manual/bsp-qemu.json
 delete mode 100644 meta/lib/oeqa/manual/compliance-test.json
 delete mode 100644 meta/lib/oeqa/manual/eclipse-plugin.json
 create mode 100644 meta/lib/oeqa/runtime/cases/ltp_stress.py
 create mode 100644 meta/lib/oeqa/utils/ltp.py

-- 
2.7.4



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

end of thread, other threads:[~2019-11-14  3:42 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-12  4:33 [PATCH 00/20] QA updates Armin Kuster
2019-11-12  4:33 ` [PATCH 01/20] OEQA: Add a check for MACHINE Armin Kuster
2019-11-12  4:33 ` [PATCH 02/20] OEQA: Add qemu checks Armin Kuster
2019-11-12  4:33 ` [PATCH 03/20] OEQA: Centrilize the base LTP routines Armin Kuster
2019-11-12  4:33 ` [PATCH 04/20] OEQA: update ltp runtimes to use new structure Armin Kuster
2019-11-14  1:53   ` Mittal, Anuj
2019-11-14  3:42     ` akuster808
2019-11-12  4:33 ` [PATCH 05/20] OEQA/runtime: Add ltp stress test Armin Kuster
2019-11-12  4:33 ` [PATCH 06/20] OEQA/manual: remove crash " Armin Kuster
2019-11-12  4:33 ` [PATCH 07/20] manual qa: drop ltpstress test Armin Kuster
2019-11-12  4:33 ` [PATCH 08/20] manual qa/bsp-qemu: remove rpm tests already done in runtime Armin Kuster
2019-11-12  4:33 ` [PATCH 09/20] manual qa/bsp-qemu: remove KVM enabled which is already done in selftest runqemu Armin Kuster
2019-11-12  4:33 ` [PATCH 10/20] manual/bsp-qemu: drop xserver test done at runtime Armin Kuster
2019-11-12  4:33 ` [PATCH 11/20] manual/bsp-qemu: remove only_one_connmand_in_background " Armin Kuster
2019-11-12  4:33 ` [PATCH 12/20] OEQA: remove postinit test done w/selftest runtime Armin Kuster
2019-11-12  4:33 ` [PATCH 13/20] OEQA: eclipse support was dropped in warrior Armin Kuster
2019-11-12  4:33 ` [PATCH 14/20] OEQA: move manual bash test to runtime Armin Kuster
2019-11-13  1:33   ` Mittal, Anuj
2019-11-13  1:49     ` akuster808
2019-11-12  4:33 ` [PATCH 15/20] OEQA: remove manual bash test Armin Kuster
2019-11-12  4:33 ` [PATCH 16/20] OEQA: remove manual useradd test Armin Kuster
2019-11-12  4:33 ` [PATCH 17/20] OEQA: move list-packageconfig-flags tests from manual to self Armin Kuster
2019-11-12  4:33 ` [PATCH 18/20] OEQA: remove manual PACKAGECONFIG_FLAGS tests Armin Kuster
2019-11-12  4:33 ` [PATCH 19/20] OEQA: add crosstab selftest Armin Kuster
2019-11-12  4:33 ` [PATCH 20/20] OEQA: remove crosstab test from manual Armin Kuster

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.