mbox series

[0/2] selftests/nolibc: add armthumb configuration

Message ID 20250301-nolibc-armthumb-v1-0-d1f04abb5f6d@weissschuh.net (mailing list archive)
Headers show
Series selftests/nolibc: add armthumb configuration | expand

Message

Thomas Weißschuh March 1, 2025, 11:23 a.m. UTC
While nolibc does support ARM Thumb instructions,
that support was not tested specifically.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
---
Thomas Weißschuh (2):
      selftests/nolibc: explicitly enable ARM mode
      selftests/nolibc: add armthumb configuration

 tools/testing/selftests/nolibc/Makefile     | 7 +++++++
 tools/testing/selftests/nolibc/run-tests.sh | 5 +++--
 2 files changed, 10 insertions(+), 2 deletions(-)
---
base-commit: 3bd53b2fa57d9472d3af63b3f4d26023ba07b579
change-id: 20250228-nolibc-armthumb-372963140267

Best regards,

Comments

Willy Tarreau March 1, 2025, 4:32 p.m. UTC | #1
On Sat, Mar 01, 2025 at 12:23:58PM +0100, Thomas Weißschuh wrote:
> While nolibc does support ARM Thumb instructions,
> that support was not tested specifically.

Good idea! In my case (and most likely most users), it actually allows
to test the Arm mode, because I think that the majority of Arm cross
compilers are configured to produce thumb2 code by default since it's
generally faster and quite smaller.

Tested-by: Willy Tarreau <w@1wt.eu>

Willy