mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: jmaselbas@kalray.eu, Ahmad Fatoum <a.fatoum@pengutronix.de>,
	Rouven Czerwinski <r.czerwinski@pengutronix.de>,
	rcz@pengutronix.de
Subject: [PATCH RESEND v4 12/13] test: self: run selftests as part of the pytest suite
Date: Fri,  4 Jun 2021 10:47:03 +0200	[thread overview]
Message-ID: <20210604084704.17410-13-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20210604084704.17410-1-a.fatoum@pengutronix.de>

We don't want to enable self tests in the normal configs as they may,
in future, bloat size needlessly. Enable it instead in the base.cfg
fragment and add a test that verifies the selftest command
runs without errors.

Selftests can be run on startup for CONFIG_SHELL_NONE systems. This is
not implemented here. For such systems the test will be skipped
as CONFIG_CMD_SELFTEST won't be defined. To manually skip with
emulate.pl, add --no-kconfig-base.

Acked-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 test/kconfig/base.cfg      | 4 ++++
 test/py/test_bselftests.py | 8 ++++++++
 2 files changed, 12 insertions(+)
 create mode 100644 test/py/test_bselftests.py

diff --git a/test/kconfig/base.cfg b/test/kconfig/base.cfg
index e69de29bb2d1..6a9f68349816 100644
--- a/test/kconfig/base.cfg
+++ b/test/kconfig/base.cfg
@@ -0,0 +1,4 @@
+CONFIG_TEST=y
+CONFIG_SELFTEST=y
+CONFIG_CMD_SELFTEST=y
+CONFIG_SELFTEST_ENABLE_ALL=y
diff --git a/test/py/test_bselftests.py b/test/py/test_bselftests.py
new file mode 100644
index 000000000000..7417e7434916
--- /dev/null
+++ b/test/py/test_bselftests.py
@@ -0,0 +1,8 @@
+import pytest
+from .helper import *
+
+def test_bselftest(barebox, barebox_config):
+    skip_disabled(barebox_config, "CONFIG_CMD_SELFTEST")
+
+    stdout, _, returncode = barebox.run('selftest', timeout=30)
+    assert returncode == 0, "selftest failed:\n{}\n".format("\n".join(stdout))
-- 
2.29.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


  parent reply	other threads:[~2021-06-04  8:50 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-04  8:46 [PATCH RESEND v4 00/13] add barebox in-tree testing infrastructure Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 01/13] kbuild: add install target Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 02/13] kbuild: add ARCH={i386, x86_64} as aliases for x86 Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 03/13] kbuild: add ARCH=um alias for sandbox Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 04/13] MIPS: qemu-malta: generate swapped image as part of multi-image build Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 05/13] openrisc: set default KBUILD_IMAGE Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 06/13] Documentation: boards: RISC-V: update TinyEMU support Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 07/13] test: add basic barebox self-test infrastructure Ahmad Fatoum
2021-06-04  8:46 ` [PATCH RESEND v4 08/13] test: self: port Linux printf kselftest Ahmad Fatoum
2021-06-04  8:47 ` [PATCH RESEND v4 09/13] test: add labgrid-style configs for some emulated targets Ahmad Fatoum
2021-06-04  8:47 ` [PATCH RESEND v4 10/13] test: add first sample tests Ahmad Fatoum
2021-06-04  8:47 ` [PATCH RESEND v4 11/13] test: add emulate.pl, a runner for barebox on emulated targets Ahmad Fatoum
2021-06-04  8:47 ` Ahmad Fatoum [this message]
2021-06-04  8:47 ` [PATCH RESEND v4 13/13] test: add bthread test Ahmad Fatoum

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210604084704.17410-13-a.fatoum@pengutronix.de \
    --to=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=jmaselbas@kalray.eu \
    --cc=r.czerwinski@pengutronix.de \
    --cc=rcz@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox