From: Ahmad Fatoum <a.fatoum@pengutronix.de> To: barebox@lists.infradead.org Subject: [PATCH v2 00/13] add barebox in-tree testing infrastructure Date: Mon, 31 May 2021 08:55:07 +0200 Message-ID: <20210531065520.12385-1-a.fatoum@pengutronix.de> (raw) v1 is here: https://lore.barebox.org/barebox/20210412071651.8769-1-a.fatoum@pengutronix.de/ v1 -> v2: - drop already merged patches - use objcopy to swap image byte order instead of writing something new (Jules) - always run tests from source directory, not build directory when building out-of-tree (honour KBUILD_OUTPUT, build symlink in that case) - add some more sample tests - add test/riscv/sifive_defconfig.yaml Ahmad Fatoum (13): kbuild: add install target kbuild: add ARCH={i386, x86_64} as aliases for x86 kbuild: add ARCH=um alias for sandbox MIPS: qemu-malta: generate swapped image as part of multi-image build openrisc: set default KBUILD_IMAGE Documentation: boards: RISC-V: update TinyEMU support test: add basic barebox self-test infrastructure test: self: port Linux printf kselftest test: add labgrid configs for some emulated targets test: add first sample tests test: add emulate.pl, a runner for barebox on emulated targets test: self: run selftests as part of the pytest suite test: add bthread test Documentation/boards/emulated.rst | 70 +++ Documentation/boards/mips/qemu-malta.rst | 16 +- Documentation/boards/riscv.rst | 20 +- Documentation/boards/riscv/barebox-virt32.cfg | 7 + Documentation/boards/riscv/barebox-virt64.cfg | 7 + Kconfig | 1 + Makefile | 28 +- arch/openrisc/Makefile | 2 + commands/Makefile | 1 + commands/selftest.c | 88 +++ common/startup.c | 4 + images/.gitignore | 1 + images/Makefile | 7 +- images/Makefile.malta | 10 +- include/bselftest.h | 74 +++ include/stdlib.h | 5 + test/.gitignore | 1 + test/Kconfig | 8 + test/Makefile | 1 + test/__init__.py | 0 test/arm/a15@vexpress_defconfig.yaml | 23 + test/arm/a9@vexpress_defconfig.yaml | 23 + test/arm/qemu_virt64_defconfig.yaml | 27 + test/arm/vexpress_defconfig.yaml | 1 + test/arm/virt@vexpress_defconfig.yaml | 25 + test/conftest.py | 34 ++ test/emulate.pl | 509 ++++++++++++++++++ test/kconfig/base.cfg | 4 + test/kconfig/full.cfg | 2 + test/kconfig/virtio-pci.cfg | 6 + test/mips/be@qemu-malta_defconfig.yaml | 25 + test/mips/le@qemu-malta_defconfig.yaml | 28 + test/mips/qemu-malta_defconfig.yaml | 1 + test/openrisc/generic_defconfig.yaml | 23 + test/py/__init__.py | 0 test/py/helper.py | 38 ++ test/py/test_bselftests.py | 8 + test/py/test_bthread.py | 23 + test/py/test_shell.py | 37 ++ test/riscv/qemu@virt32_defconfig.yaml | 30 ++ test/riscv/qemu@virt64_defconfig.yaml | 30 ++ test/riscv/sifive_defconfig.yaml | 28 + test/riscv/tinyemu@virt32_defconfig.yaml | 25 + test/riscv/tinyemu@virt64_defconfig.yaml | 25 + test/riscv/virt32_defconfig.yaml | 1 + test/riscv/virt64_defconfig.yaml | 1 + test/sandbox/sandbox_defconfig.yaml | 12 + test/self/Kconfig | 39 ++ test/self/Makefile | 4 + test/self/core.c | 22 + test/self/printf.c | 302 +++++++++++ test/x86/efi_defconfig.yaml | 1 + test/x86/pc@efi_defconfig.yaml | 34 ++ test/x86/q35@efi_defconfig.yaml | 34 ++ test/x86/virtio@efi_defconfig.yaml | 35 ++ 55 files changed, 1786 insertions(+), 25 deletions(-) create mode 100644 Documentation/boards/emulated.rst create mode 100644 Documentation/boards/riscv/barebox-virt32.cfg create mode 100644 Documentation/boards/riscv/barebox-virt64.cfg create mode 100644 commands/selftest.c create mode 100644 include/bselftest.h create mode 100644 test/.gitignore create mode 100644 test/Kconfig create mode 100644 test/Makefile create mode 100644 test/__init__.py create mode 100644 test/arm/a15@vexpress_defconfig.yaml create mode 100644 test/arm/a9@vexpress_defconfig.yaml create mode 100644 test/arm/qemu_virt64_defconfig.yaml create mode 120000 test/arm/vexpress_defconfig.yaml create mode 100644 test/arm/virt@vexpress_defconfig.yaml create mode 100644 test/conftest.py create mode 100755 test/emulate.pl create mode 100644 test/kconfig/base.cfg create mode 100644 test/kconfig/full.cfg create mode 100644 test/kconfig/virtio-pci.cfg create mode 100644 test/mips/be@qemu-malta_defconfig.yaml create mode 100644 test/mips/le@qemu-malta_defconfig.yaml create mode 120000 test/mips/qemu-malta_defconfig.yaml create mode 100644 test/openrisc/generic_defconfig.yaml create mode 100644 test/py/__init__.py create mode 100644 test/py/helper.py create mode 100644 test/py/test_bselftests.py create mode 100644 test/py/test_bthread.py create mode 100644 test/py/test_shell.py create mode 100644 test/riscv/qemu@virt32_defconfig.yaml create mode 100644 test/riscv/qemu@virt64_defconfig.yaml create mode 100644 test/riscv/sifive_defconfig.yaml create mode 100644 test/riscv/tinyemu@virt32_defconfig.yaml create mode 100644 test/riscv/tinyemu@virt64_defconfig.yaml create mode 120000 test/riscv/virt32_defconfig.yaml create mode 120000 test/riscv/virt64_defconfig.yaml create mode 100644 test/sandbox/sandbox_defconfig.yaml create mode 100644 test/self/Kconfig create mode 100644 test/self/Makefile create mode 100644 test/self/core.c create mode 100644 test/self/printf.c create mode 120000 test/x86/efi_defconfig.yaml create mode 100644 test/x86/pc@efi_defconfig.yaml create mode 100644 test/x86/q35@efi_defconfig.yaml create mode 100644 test/x86/virtio@efi_defconfig.yaml -- 2.29.2 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2021-05-31 6:57 UTC|newest] Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-05-31 6:55 Ahmad Fatoum [this message] 2021-05-31 6:55 ` [PATCH v2 01/13] kbuild: add install target Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 02/13] kbuild: add ARCH={i386, x86_64} as aliases for x86 Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 03/13] kbuild: add ARCH=um alias for sandbox Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 04/13] MIPS: qemu-malta: generate swapped image as part of multi-image build Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 05/13] openrisc: set default KBUILD_IMAGE Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 06/13] Documentation: boards: RISC-V: update TinyEMU support Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 07/13] test: add basic barebox self-test infrastructure Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 08/13] test: self: port Linux printf kselftest Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 09/13] test: add labgrid configs for some emulated targets Ahmad Fatoum 2021-06-02 11:27 ` Rouven Czerwinski 2021-06-02 11:34 ` Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 10/13] test: add first sample tests Ahmad Fatoum 2021-06-02 11:33 ` Rouven Czerwinski 2021-06-02 11:35 ` Ahmad Fatoum 2021-06-03 15:14 ` Jan Lübbe 2021-06-03 15:31 ` Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 11/13] test: add emulate.pl, a runner for barebox on emulated targets Ahmad Fatoum 2021-05-31 6:55 ` [PATCH v2 12/13] test: self: run selftests as part of the pytest suite Ahmad Fatoum 2021-06-02 11:36 ` Rouven Czerwinski 2021-05-31 6:55 ` [PATCH v2 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=20210531065520.12385-1-a.fatoum@pengutronix.de \ --to=a.fatoum@pengutronix.de \ --cc=barebox@lists.infradead.org \ /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
mail archive of the barebox mailing list This inbox may be cloned and mirrored by anyone: git clone --mirror https://lore.barebox.org/barebox/0 barebox/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 barebox barebox/ https://lore.barebox.org/barebox \ barebox@lists.infradead.org barebox@lists.infradead.org public-inbox-index barebox Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git