mbox series

[v4,0/5] testimage: add failed test post actions and fetch more data

Message ID 20240226091922.41801-1-alexis.lothore@bootlin.com
Headers show
Series testimage: add failed test post actions and fetch more data | expand

Message

Alexis Lothoré Feb. 26, 2024, 9:19 a.m. UTC
Hello,
this small series is related to some disk space issue observed by the SWAT
team (see [1]) which eventually leads to tests failure. In order to help
diagnose those issues, I propose to enrich the retrieved artifacts with
some additional data, like disk usage on target and on host (in case the
target is a virtualized guest)

This v4 fixes missing replace in the first commit introducing a shared
helper. This miss led to a failure in buildbot ([2])
Link to v3: [3]

[1] https://bugzilla.yoctoproject.org/show_bug.cgi?id=15220
[2] https://autobuilder.yoctoproject.org/typhoon/#/builders/136/builds/56/steps/14/logs/stdio
[3] https://lore.kernel.org/openembedded-core/20240223151648.1453027-1-alexis.lothore@bootlin.com/

Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>

Alexis Lothoré (5):
  lib/oeqa: share get_json_result_dir helper
  testimage: create a list of failed test post actions
  oeqa/utils/postactions: isolate directory creation in dedicated action
  oeqa/utils/postactions: add target disk usage stat as post action
  oeqa/utils/postactions: testimage: add host disk usage stat as post
    action

 meta/classes-recipe/testimage.bbclass | 53 ++-------------
 meta/lib/oeqa/sdk/testsdk.py          | 11 +--
 meta/lib/oeqa/sdkext/testsdk.py       |  3 +-
 meta/lib/oeqa/utils/__init__.py       |  7 ++
 meta/lib/oeqa/utils/postactions.py    | 98 +++++++++++++++++++++++++++
 5 files changed, 114 insertions(+), 58 deletions(-)
 create mode 100644 meta/lib/oeqa/utils/postactions.py