From: "Alex Bennée" <alex.bennee@linaro.org>
To: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Cc: qemu-devel@nongnu.org
Subject: Re: [PATCH v3 00/15] tests/tcg: Add TriCore tests
Date: Wed, 14 Apr 2021 16:34:52 +0100 [thread overview]
Message-ID: <87o8eglvyc.fsf@linaro.org> (raw)
In-Reply-To: <20210305170045.869437-1-kbastian@mail.uni-paderborn.de>
Bastian Koppelmann <kbastian@mail.uni-paderborn.de> writes:
> Hi Alex,
>
> after a long while and thanks to Thomas reminder, I finally came back to this
> series. I addressed most of your comments except for the timeout --foreground
> problem (see https://lists.gnu.org/archive/html/qemu-devel/2020-06/msg00921.html).
> I just couldn't figure out why QEMU hangs when run from the Makefile.
As I'm refactoring configure.sh anyway I have pulled the series and made
the suggested changes myself. Queued to testing/next, thanks.
>
> You can find the full tree here:
> https://github.com/bkoppelmann/qemu/tree/tricore-tcg-tests2
>
> Cheers,
> Bastian
>
> Bastian Koppelmann (15):
> tests/tcg: Add docker_as and docker_ld cmds
> tests/tcg: Run timeout cmds using --foreground
> hw/tricore: Add testdevice for tests in tests/tcg/
> tests/tcg/tricore: Add build infrastructure
> configure: Emit HOST_CC to config-host.mak
> tests/tcg/tricore: Add macros to create tests and first test 'abs'
> tests/tcg/tricore: Add bmerge test
> tests/tcg/tricore: Add clz test
> tests/tcg/tricore: Add dvstep test
> tests/tcg/tricore: Add fadd test
> tests/tcg/tricore: Add fmul test
> tests/tcg/tricore: Add ftoi test
> tests/tcg/tricore: Add madd test
> tests/tcg/tricore: Add msub test
> tests/tcg/tricore: Add muls test
>
> MAINTAINERS | 1 +
> configure | 1 +
> hw/tricore/meson.build | 1 +
> hw/tricore/tricore_testboard.c | 8 ++
> hw/tricore/tricore_testdevice.c | 82 +++++++++++
> include/hw/tricore/tricore_testdevice.h | 38 ++++++
> tests/tcg/Makefile.qemu | 15 ++
> tests/tcg/Makefile.target | 5 +-
> tests/tcg/configure.sh | 27 +++-
> tests/tcg/tricore/Makefile.softmmu-target | 26 ++++
> .../tcg/tricore/Makefile.softmmu-target.orig | 25 ++++
> tests/tcg/tricore/link.ld | 60 ++++++++
> tests/tcg/tricore/macros.h | 129 ++++++++++++++++++
> tests/tcg/tricore/test_abs.S | 7 +
> tests/tcg/tricore/test_bmerge.S | 8 ++
> tests/tcg/tricore/test_clz.S | 9 ++
> tests/tcg/tricore/test_dvstep.S | 15 ++
> tests/tcg/tricore/test_fadd.S | 16 +++
> tests/tcg/tricore/test_fmul.S | 8 ++
> tests/tcg/tricore/test_ftoi.S | 10 ++
> tests/tcg/tricore/test_madd.S | 11 ++
> tests/tcg/tricore/test_msub.S | 9 ++
> tests/tcg/tricore/test_muls.S | 9 ++
> 23 files changed, 517 insertions(+), 3 deletions(-)
> create mode 100644 hw/tricore/tricore_testdevice.c
> create mode 100644 include/hw/tricore/tricore_testdevice.h
> create mode 100644 tests/tcg/tricore/Makefile.softmmu-target
> create mode 100644 tests/tcg/tricore/Makefile.softmmu-target.orig
> create mode 100644 tests/tcg/tricore/link.ld
> create mode 100644 tests/tcg/tricore/macros.h
> create mode 100644 tests/tcg/tricore/test_abs.S
> create mode 100644 tests/tcg/tricore/test_bmerge.S
> create mode 100644 tests/tcg/tricore/test_clz.S
> create mode 100644 tests/tcg/tricore/test_dvstep.S
> create mode 100644 tests/tcg/tricore/test_fadd.S
> create mode 100644 tests/tcg/tricore/test_fmul.S
> create mode 100644 tests/tcg/tricore/test_ftoi.S
> create mode 100644 tests/tcg/tricore/test_madd.S
> create mode 100644 tests/tcg/tricore/test_msub.S
> create mode 100644 tests/tcg/tricore/test_muls.S
--
Alex Bennée
prev parent reply other threads:[~2021-04-14 15:37 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-05 17:00 [PATCH v3 00/15] tests/tcg: Add TriCore tests Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 01/15] tests/tcg: Add docker_as and docker_ld cmds Bastian Koppelmann
2021-04-14 13:40 ` Alex Bennée
2021-04-14 14:58 ` Alex Bennée
2021-03-05 17:00 ` [PATCH v3 02/15] tests/tcg: Run timeout cmds using --foreground Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 03/15] hw/tricore: Add testdevice for tests in tests/tcg/ Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 04/15] tests/tcg/tricore: Add build infrastructure Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 05/15] configure: Emit HOST_CC to config-host.mak Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 06/15] tests/tcg/tricore: Add macros to create tests and first test 'abs' Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 07/15] tests/tcg/tricore: Add bmerge test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 08/15] tests/tcg/tricore: Add clz test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 09/15] tests/tcg/tricore: Add dvstep test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 10/15] tests/tcg/tricore: Add fadd test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 11/15] tests/tcg/tricore: Add fmul test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 12/15] tests/tcg/tricore: Add ftoi test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 13/15] tests/tcg/tricore: Add madd test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 14/15] tests/tcg/tricore: Add msub test Bastian Koppelmann
2021-03-05 17:00 ` [PATCH v3 15/15] tests/tcg/tricore: Add muls test Bastian Koppelmann
2021-03-05 18:00 ` [PATCH v3 00/15] tests/tcg: Add TriCore tests no-reply
2021-04-06 10:36 ` Bastian Koppelmann
2021-04-06 18:03 ` Alex Bennée
2021-04-14 15:34 ` Alex Bennée [this message]
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=87o8eglvyc.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=kbastian@mail.uni-paderborn.de \
--cc=qemu-devel@nongnu.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
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;
as well as URLs for NNTP newsgroup(s).