diff mbox series

[v1,18/25] tests/tcg/tricore: Add clz test

Message ID 20210419145435.14083-19-alex.bennee@linaro.org
State New
Headers show
Series testing/next (hexagon/tricore/test cc) | expand

Commit Message

Alex Bennée April 19, 2021, 2:54 p.m. UTC
From: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>


Tested-by: Alex Bennée <alex.bennee@linaro.org>

Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

Message-Id: <20210305170045.869437-9-kbastian@mail.uni-paderborn.de>
---
 tests/tcg/tricore/Makefile.softmmu-target      |  1 +
 tests/tcg/tricore/Makefile.softmmu-target.orig | 18 ++++++++++++++++++
 tests/tcg/tricore/test_clz.S                   |  9 +++++++++
 3 files changed, 28 insertions(+)
 create mode 100644 tests/tcg/tricore/Makefile.softmmu-target.orig
 create mode 100644 tests/tcg/tricore/test_clz.S

-- 
2.20.1

Comments

Bastian Koppelmann April 29, 2021, 1:53 p.m. UTC | #1
On Mon, Apr 19, 2021 at 03:54:28PM +0100, Alex Bennée wrote:
> From: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>

> 

> Tested-by: Alex Bennée <alex.bennee@linaro.org>

> Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>

> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

> Message-Id: <20210305170045.869437-9-kbastian@mail.uni-paderborn.de>

> ---

>  tests/tcg/tricore/Makefile.softmmu-target      |  1 +

>  tests/tcg/tricore/Makefile.softmmu-target.orig | 18 ++++++++++++++++++


Whoops, that file slipped in. Can you remove that, Alex?

Cheers,
Bastian
diff mbox series

Patch

diff --git a/tests/tcg/tricore/Makefile.softmmu-target b/tests/tcg/tricore/Makefile.softmmu-target
index de6a2cc88e..a9b81545e2 100644
--- a/tests/tcg/tricore/Makefile.softmmu-target
+++ b/tests/tcg/tricore/Makefile.softmmu-target
@@ -5,6 +5,7 @@  ASFLAGS =
 
 TESTS += test_abs.tst
 TESTS += test_bmerge.tst
+TESTS += test_clz.tst
 
 QEMU_OPTS += -M tricore_testboard -nographic -kernel
 
diff --git a/tests/tcg/tricore/Makefile.softmmu-target.orig b/tests/tcg/tricore/Makefile.softmmu-target.orig
new file mode 100644
index 0000000000..de6a2cc88e
--- /dev/null
+++ b/tests/tcg/tricore/Makefile.softmmu-target.orig
@@ -0,0 +1,18 @@ 
+TESTS_PATH = $(SRC_PATH)/tests/tcg/tricore
+
+LDFLAGS = -T$(TESTS_PATH)/link.ld
+ASFLAGS =
+
+TESTS += test_abs.tst
+TESTS += test_bmerge.tst
+
+QEMU_OPTS += -M tricore_testboard -nographic -kernel
+
+%.pS: $(TESTS_PATH)/%.S
+	$(HOST_CC) -E -o $@ $<
+
+%.o: %.pS
+	$(AS) $(ASFLAGS) -o $@ $<
+
+%.tst: %.o
+	$(LD) $(LDFLAGS) $< -o $@
diff --git a/tests/tcg/tricore/test_clz.S b/tests/tcg/tricore/test_clz.S
new file mode 100644
index 0000000000..e03835f123
--- /dev/null
+++ b/tests/tcg/tricore/test_clz.S
@@ -0,0 +1,9 @@ 
+#include "macros.h"
+.text
+.global _start
+_start:
+    TEST_D_D(cls.h, 1, 0x0, 0x6db17976)
+    TEST_D_D(cls.h, 2, 0x000f000f, 0x0)
+
+    TEST_PASSFAIL
+