diff mbox series

[v1,11/28] tests/tcg: enable debian-nios2-cross for test building

Message ID 20211026102234.3961636-12-alex.bennee@linaro.org
State Superseded
Headers show
Series testing, plugins and gdbstub for 6.2 | expand

Commit Message

Alex Bennée Oct. 26, 2021, 10:22 a.m. UTC
Now we have a nios2 test image we can start using it to build tests.
However signal handling in nios2 is still broken so we disable the
signals and linux-test tests that trigger the bug.

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

---
 MAINTAINERS                     |  1 +
 tests/tcg/configure.sh          |  6 ++++++
 tests/tcg/nios2/Makefile.target | 11 +++++++++++
 3 files changed, 18 insertions(+)
 create mode 100644 tests/tcg/nios2/Makefile.target

-- 
2.30.2

Comments

Philippe Mathieu-Daudé Oct. 26, 2021, 3:04 p.m. UTC | #1
On 10/26/21 12:22, Alex Bennée wrote:
> Now we have a nios2 test image we can start using it to build tests.

> However signal handling in nios2 is still broken so we disable the

> signals and linux-test tests that trigger the bug.

> 

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

> ---

>  MAINTAINERS                     |  1 +

>  tests/tcg/configure.sh          |  6 ++++++

>  tests/tcg/nios2/Makefile.target | 11 +++++++++++

>  3 files changed, 18 insertions(+)

>  create mode 100644 tests/tcg/nios2/Makefile.target


Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Richard Henderson Oct. 26, 2021, 8:02 p.m. UTC | #2
On 10/26/21 3:22 AM, Alex Bennée wrote:
> Now we have a nios2 test image we can start using it to build tests.

> However signal handling in nios2 is still broken so we disable the

> signals and linux-test tests that trigger the bug.

> 

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

> ---

>   MAINTAINERS                     |  1 +

>   tests/tcg/configure.sh          |  6 ++++++

>   tests/tcg/nios2/Makefile.target | 11 +++++++++++

>   3 files changed, 18 insertions(+)

>   create mode 100644 tests/tcg/nios2/Makefile.target


Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~
diff mbox series

Patch

diff --git a/MAINTAINERS b/MAINTAINERS
index 108fcb799b..87d67f19ce 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -222,6 +222,7 @@  F: target/microblaze/
 F: hw/microblaze/
 F: disas/microblaze.c
 F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
+F: tests/tcg/nios2/Makefile.target
 
 MIPS TCG CPUs
 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
diff --git a/tests/tcg/configure.sh b/tests/tcg/configure.sh
index 0d3ac839ee..34f6dbbc20 100755
--- a/tests/tcg/configure.sh
+++ b/tests/tcg/configure.sh
@@ -60,6 +60,7 @@  fi
 : ${cross_cc_mips64="mips64-linux-gnuabi64-gcc"}
 : ${cross_cc_mipsel="mipsel-linux-gnu-gcc"}
 : ${cross_cc_mips="mips-linux-gnu-gcc"}
+: ${cross_cc_nios2="nios2-linux-gnu-gcc"}
 : ${cross_cc_ppc="powerpc-linux-gnu-gcc"}
 : ${cross_cc_cflags_ppc="-m32"}
 : ${cross_cc_ppc64="powerpc64-linux-gnu-gcc"}
@@ -159,6 +160,11 @@  for target in $target_list; do
       container_image=debian-mips-cross
       container_cross_cc=mips-linux-gnu-gcc
       ;;
+    nios2-*)
+      container_hosts=x86_64
+      container_image=debian-nios2-cross
+      container_cross_cc=nios2-linux-gnu-gcc
+      ;;
     ppc-*|ppc64abi32-*)
       container_hosts=x86_64
       container_image=debian-powerpc-test-cross
diff --git a/tests/tcg/nios2/Makefile.target b/tests/tcg/nios2/Makefile.target
new file mode 100644
index 0000000000..b38e2352b7
--- /dev/null
+++ b/tests/tcg/nios2/Makefile.target
@@ -0,0 +1,11 @@ 
+# nios2 specific test tweaks
+
+# Currently nios2 signal handling is broken
+run-signals: signals
+	$(call skip-test, $<, "BROKEN")
+run-plugin-signals-with-%:
+	$(call skip-test, $<, "BROKEN")
+run-linux-test: linux-test
+	$(call skip-test, $<, "BROKEN")
+run-plugin-linux-test-with-%:
+	$(call skip-test, $<, "BROKEN")